- 博客(1)
- 收藏
- 关注
原创 顺序表静态插入基本操作
#include #define MaxSize 10 typedef struct { int data[MaxSize]; int length; }SqList; void InitList(SqList& L) { //一定要初始化顺序表为0 L.length = 0; } bool ListInsert(SqList& L, int i, int e) { //不是void时,都要返回值...
2022-08-01 08:16:45 317 1
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人