摘要: 1 #define ListSize 100 2 #include 3 // 存储结构 4 typedef struct Seqlist 5 { 6 int list[ListSize]; 7 int length; 8 }; 9 //初始化 10 void InitList(Seqlist *L) 11 { 12 L->le... 阅读全文
posted @ 2016-10-25 10:36 #ifndef 阅读(299) 评论(0) 推荐(0) 编辑