c顺序链表
摘要:
#include <stdio.h> #define MAXSIZE 10 #include <stdbool.h> typedef struct{ int data[MAXSIZE]; int length; }SqList; bool initList(SqList *L){ for(int i 阅读全文
posted @ 2020-08-04 20:44 chenchang12 阅读(112) 评论(0) 推荐(0) 编辑