会员
周边
众包
新闻
博问
闪存
赞助商
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
简洁模式
...
退出登录
注册
登录
sz_csdn
管理
2016年10月25日
数据结构链表操作
摘要: 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
阅读(306)
评论(0)
推荐(0)
编辑