顺序表各类基本运算的算法

【代码】//文件名:sqlist.cppsql #include <stdio.h> #include <malloc.h> #define MaxSize 50 typedef int ElemType; typedef struct { ElemType data[MaxSize]; int length; } SqList; void InitList(SqList *&L)
相关文章
相关标签/搜索