数据结构——顺序表的基本操做与合并两个顺序表

#include<iostream> #include<stdlib.h> #include<time.h> using namespace std; #define LIST_INIT_SIZE  100//表的初始空间分配量 #define LISTINCREMENT   10//表存储空间的增量 typedef struct {     int *elem;//首地址     int len
相关文章
相关标签/搜索