两个顺序表合并成一个顺序表

#include<stdio.h> #include<stdlib.h> #include<malloc.h> #define LIST_INIT_SIZE 100 #define LISTINCREMENT 10 #define OK 1 #define ERROR 0 #define OVERFLOW -2 typedef int Status; typedef int ElemType
相关文章
相关标签/搜索