2020年5月2日
摘要: #define TURE 1 #define FALSE 0 #define OK 1 #define ERROR 0 #define INFEASIBLE -1 #define OVERFLOW -2 #define list_init_size 80 //初始分配存储空间 #define lis 阅读全文
posted @ 2020-05-02 09:04 乐乐酱1997 阅读(93) 评论(0) 推荐(0)
摘要: 1 #include <stdio.h>/*单向链表*///不要求逻辑上相邻的两个元素物理上也相邻,通过"链"建立起数据之间的逻辑关系 2 #include <stdlib.h> 3 #include<malloc.h> 4 typedef int ElementType; //需要链表中什么元素, 阅读全文
posted @ 2020-05-02 09:02 乐乐酱1997 阅读(146) 评论(0) 推荐(0)