- 博客(2)
- 资源 (2)
- 收藏
- 关注
原创 数据结构实验-链表-free函数陷阱
019-1-30 debug是让人头疼的事 在练习中我成功的又崩溃了一次;通过断点调试 status DestroyList(Linklist head) {//⑵销毁表 Linklist L = head, Lp; while (L->next != NULL) { L = Lp; L = L->next; free(Lp); } free(head); r...
2019-01-30 11:20:28
1007
原创 听说可以拿积分?数据结构实验报告,链表
#include <stdio.h> #include <malloc.h> #include <stdlib.h> #define TRUE 1 #define FALSE 0 #define OK 1 #define ERROR 0 #define INFEASTABLE -1 #define OVERFLOW -2 typedef int status; ...
2019-01-28 21:42:19
175
c primer plus的答案精校版,你值得拥有
2019-01-28
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人