摘要: 1 #include"stdio.h" 2 #include"stdlib.h" 3 #include"malloc.h" 4 5 6 const int maxlen=1000;//线性表的最大长度 7 8 //------------线性表------------------ 9 struct 阅读全文
posted @ 2015-12-28 23:39 指间ゝ繁华初逝的格调 阅读(169) 评论(0) 推荐(0) 编辑
摘要: 1 #include "stdio.h" 2 const int maxlen = 1000; 3 #define infinity 65535 4 5 struct encode{ 6 char Data[maxlen];//存储编码(字符类型) 7 int count;//编码的位数 8 }; 阅读全文
posted @ 2015-12-28 14:14 指间ゝ繁华初逝的格调 阅读(401) 评论(0) 推荐(0) 编辑