順序表的相關操做(初始化,插入,刪除,清空,銷燬)

#include <stdio.h> #include <assert.h> typedef int DataType; #define MAX_SIZE (100) typedef struct SeqList { DataType array[MAX_SIZE]; int size; int i; int index; } SeqList ; //初始化 void
相關文章
相關標籤/搜索