摘要: 顺序表示最简单的一个数据结构,直接贴代码吧,因为比较简单。 #include #include typedef struct sqlist { int *elem; int length; }sqList; void initList (sqList *l) { ... 阅读全文
posted @ 2016-02-10 21:35 小苇 阅读(190) 评论(0) 推荐(0) 编辑