智健blog

摘要: 链表操作 在c语言里我们通过结构体和数组这两种数据结构构造线性表 创建顺表表-数组静态分配内存。 typedef struct { char data[10]; int length; }SqList; bool ListInsert(SqList &L,int i,char e){ for (in 阅读全文
posted @ 2020-06-08 18:42 智健 阅读(1119) 评论(0) 推荐(0) 编辑