數據結構——順序表的基本操做與合併兩個順序表

#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
相關文章
相關標籤/搜索