顺序表的插入删除合并 #include "stdio.h" #include "malloc.h" #include "windows.h" #define OK 1 #define OVERFLOW -1 #define ERROR 0 #define LIST_INIT_SIZE 100 #define LISTINCREMENT 10 typedef int ElemType; typede