
数据结构
bluedream1219
一个人成熟的标志之一就是,明白每天发生在自己身上99%的事情,对于别人而言没有任何意义。
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
顺序表的功能实现
顺序表的创建,插入,删除,清空,销毁,查找,输出功能 #include #include #include #defineTRUE 1 #defineFALSE 0 #defineOK 1 #defineERROR 0 #defineINFEASIBLE -1 #defineOVERFLOW -2 typedefint Status ; typedefi原创 2014-10-21 20:13:27 · 1180 阅读 · 0 评论 -
链表的创建,插入,删除,输出
我用的是头插法 #include #include #define TURE 1 #define FLASE 0 #define OK 1 #define ERROR 0 #define INFEASIBLE -1 #define OVERFLOW -2 typedef int Status; typedef int ElemType; typedef str原创 2014-10-21 20:00:31 · 1006 阅读 · 0 评论