- 博客(1)
- 收藏
- 关注
原创 C语言建立线性表并将运行结果写入文件
#include<bits/stdc++.h> #define LIST_INIT_SIZE 100 #define LISTINCREMENT 10 #define OVERFLLOW -1 typedef int ElemType; typedef struct{ ElemType *elem; int length; int listsize; }SqList; void InitSqList(SqList &L){ L.elem=(ElemTyp...
2021-11-29 17:28:14 1486
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人