10 2017 档案

摘要:1 #include<stdio.h> 2 #include<stdlib.h> 3 4 #define OK 1 5 #define NO 0 6 #define TRUE 1 7 #define FALSE 0 8 #define ERROR -1 9 10 #define MaxVerTexN 阅读全文
posted @ 2017-10-28 18:06 accomplishment 阅读(238) 评论(0) 推荐(0) 编辑
摘要:参考:http://www.cnblogs.com/kangjianwei101/p/5222014.html 阅读全文
posted @ 2017-10-27 14:15 accomplishment 阅读(1091) 评论(0) 推荐(0) 编辑
摘要:1 #include<stdio.h> 2 #include<stdlib.h> 3 #define OK 1 4 #define NO 0 5 #define TRUE 1 6 #define FALSE 0 7 #define ERROR -1 8 #define MAX_VERTEX_NUM 阅读全文
posted @ 2017-10-25 22:03 accomplishment 阅读(2023) 评论(0) 推荐(0) 编辑
摘要:1 #include 2 #include 3 #include 4 #define OK 1 5 #define NO 0 6 #define TRUE 1 7 #define FALSE 0 8 #define ERROR -1 9 #define MAX_VERTEX_NUM 20 //最大顶点个数 10 11 typedef int Status... 阅读全文
posted @ 2017-10-24 16:43 accomplishment 阅读(428) 评论(0) 推荐(0) 编辑
摘要:1 #include 2 #include 3 #include 4 #define OK 1 5 #define NO 0 6 #define TRUE 1 7 #define FALSE 0 8 #define ERROR -1 9 #define MAX_VERTEX_NUM 20 10 #define INFINITY 20000000 11 ... 阅读全文
posted @ 2017-10-24 14:45 accomplishment 阅读(1624) 评论(0) 推荐(0) 编辑
摘要:参考:http://www.cnblogs.com/kangjianwei101/p/5222014.html 阅读全文
posted @ 2017-10-23 00:07 accomplishment 阅读(219) 评论(0) 推荐(0) 编辑
摘要:输入示例 参考http://www.cnblogs.com/kangjianwei101/p/5222014.html 阅读全文
posted @ 2017-10-19 22:39 accomplishment 阅读(1446) 评论(0) 推荐(0) 编辑
摘要:1 #include 2 #include 3 #define MAX_SIZE 50 4 typedef char ElemType; 5 6 typedef struct BiTNode //结点的结构 7 { 8 ElemType data; 9 int parent; 10 }BiTNode; 11 /*存储在静态的链表中*/ 12 typede... 阅读全文
posted @ 2017-10-19 13:34 accomplishment 阅读(757) 评论(0) 推荐(0) 编辑
摘要:#include #include #include #include #define OK 1 #define NO 0 #define ERROR -1 #define TRUE 1 #define FALSE 0 #define MAXSIZE 50 typedef int Status; typedef char TElemType; typedef struct BiTN... 阅读全文
posted @ 2017-10-12 21:32 accomplishment 阅读(241) 评论(0) 推荐(0) 编辑