考研数据结构之顺序表 (待续)

考研数据结构之顺序表 (待续) //顺序表专题 #include <stdio.h> #include <malloc.h> #define MAXSIZE 100 //结构体定义 typedef struct{ int data[MAXSIZE]; int length; }sqlist; //@function 将元素e插入在顺序表中的第i个位置上 //@p
相关文章
相关标签/搜索