数据结构__员工管理信息系统代码.docVIP

  • 54
  • 0
  • 约8.42千字
  • 约 9页
  • 2019-07-10 发布于安徽
  • 举报
.. .. 数据结构-员工管理信息系统源程序 #includeiostream #includestring #include stdlib.h #include stdio.h using namespace std; #define OK 1 #define ERROR 0 #define OVERFLOW -2 typedef int Status; //Status 是函数返回值类型,其值是函数结果状态代码。 #define MAXSIZE 100 //顺序表可能达到的最大长度 typedef struct { //ElemType 为自定义的数据类型,要根据实际情况定义,本例为学生信息:(学号,成绩) int num; string name; string sex; string birth; string edu; string job; string phone; string add; }ElemType; typedef struct { //定义顺序表类型为List ElemType *elem; int length; }List; void InitList(Lis

文档评论(0)

1亿VIP精品文档

相关文档