摘要: 图的遍历(数据结构) 1 #include <iostream> 2 using namespace std; 3 4 //图的顺序存储的数据定义(邻接矩阵) 5 typedef struct VertexType { 6 char info; 7 int no; 8 }; 9 typedef st 阅读全文
posted @ 2020-04-13 22:09 瓜瓜爱呱呱 阅读(223) 评论(0) 推荐(0) 编辑
摘要: 1 #include <iostream> 2 using namespace std; 3 4 typedef struct TBTNode {//线索二叉树的构造函数 5 char data; 6 int ltag,rtag; 7 struct TBTNode *lchlid; 8 struct 阅读全文
posted @ 2020-04-13 11:33 瓜瓜爱呱呱 阅读(214) 评论(0) 推荐(0) 编辑