摘要: #include<iostream>using namespace std;typedef struct { int* a; int length;}Sqlist;// 创建线性表 void InitList(Sqlist& L) { L.a = new int[20]; if (!L.a) exi 阅读全文
posted @ 2020-10-19 18:22 柠檬tea的味道 阅读(88) 评论(0) 推荐(0)