摘要: #include "stdio.h" #include "stdlib.h" #include "string.h" #include <iostream> #define ENDFLAG 999 //二叉排序树的二叉链表存储方式 typedef struct { int key; //关键字项 } 阅读全文
posted @ 2020-01-31 17:32 lcyok 阅读(439) 评论(0) 推荐(0)
摘要: #include "stdio.h" #include <stdio.h> #include "stdlib.h" #include "string.h" #include <iostream> #define NULL 0 //二叉链表的存储结构定义 typedef char DataType; 阅读全文
posted @ 2020-01-31 17:31 lcyok 阅读(671) 评论(0) 推荐(0)
摘要: #include "stdio.h" #include "stdlib.h" #include "string.h" #define MAXSIZE 30 #define OK 1 #define OVERFLOW 0 #define ERROR 0 #define MAXQSIZE 30 type 阅读全文
posted @ 2020-01-31 17:21 lcyok 阅读(409) 评论(0) 推荐(0)