- 博客(3)
- 收藏
- 关注
原创 线性表的建立(输入+扩容+遍历)
#include <iostream>#include <stdio.h>#include <stdlib.h>using namespace std;#define InitSize 10typedef struct { int *data; int length; int maxsize;}SqList;void InitList(SqList &L){ L.length = 0; L.data = (i
2022-10-31 20:23:56
350
1
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人