归并La和Lb得到新的线性表Lc (2).docVIP

  • 2
  • 0
  • 约6.53千字
  • 约 10页
  • 2019-01-07 发布于安徽
  • 举报
. ..... #includestdio.h #includemalloc.h #define LIST_INIT_SIZE 100 // 初始化大小 #define LISTINCREMENT 15 #define TRUE 1 #define FALSE 0 #define OK 1 #define ERROR 0 #define INFEASIBLE -1 // 不可实行的 #define OVERFLOW -2 // 溢出 #includeprocess.h // exit() typedef int ElemType; // 基本(元素)类型 typedef struct { ElemType * elem; int length; int listsize; }SqLi

文档评论(0)

1亿VIP精品文档

相关文档