順序表實現兩個集合的合併

#include <stdio.h> #include <stdlib.h> #define  LIST_INIT_SIZE 10 //線性表存儲空間的初始分配量 #define  LIST_INCREMENT 10 //線性表存儲空間的分配增量 #define  OK 1 #define  OVERFLOW -1 #define  ERROR 0 typedef  int Status; //S
相關文章
相關標籤/搜索