摘要:
图的遍历(数据结构) 1 #include <iostream> 2 using namespace std; 3 4 //图的顺序存储的数据定义(邻接矩阵) 5 typedef struct VertexType { 6 char info; 7 int no; 8 }; 9 typedef st 阅读全文
摘要:
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 阅读全文