摘要: 线性表相关算法实现 如有错误欢迎各位大佬批评指正 1.初始化线性表 //初始化线性表,返回头指针 SqList* InitList(SqList* L) { int x; int index = 0; L = (SqList*)malloc(sizeof(SqList)); if (L) { pri 阅读全文
posted @ 2021-03-07 20:22 Gavin* 阅读(40) 评论(0) 推荐(0)