順序表各類基本運算的算法

【代碼】//文件名: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)
相關文章
相關標籤/搜索