随笔分类 -  数据结构与算法

摘要:#include<stdio.h>#include<stdbool.h>#define MaxSize 20typedef int DataType;typedef struct{ DataType data[MaxSize]; int length; }SqList; void Init_List 阅读全文
posted @ 2021-11-01 12:53 不会编程的小菜鸟 阅读(357) 评论(0) 推荐(0)