顺序表的相关操做(初始化,插入,删除,清空,销毁)

#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
相关文章
相关标签/搜索