码迷,mamicode.com
首页 > 其他好文 > 详细

线索二叉树的遍历

时间:2020-04-13 12:26:37      阅读:85      评论:0      收藏:0      [点我收藏+]

标签:中序遍历   typedef   stream   root   nbsp   线索二叉树   ati   ==   中序   

 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 TNTNode *rchild;
 9 };
10 void InThread (TBTNode *p,TBTNode *&pre) { //通过中序遍历对二叉树线索化的递归算法
11     if(p!=NULL) {
12         InThread(p->lchlid,pre);
13         if(p->lchlid==NULL) {
14             p->lchlid=pre;
15             p->ltag=1;
16         }
17         if(pre!=NULL&&pre->rchild==NULL) {
18             pre->rchild=p;
19             pre->rtag=1;
20         }
21         pre=p;
22         InThread(p->rchild,pre);
23     }
24 
25 }
26 void creatInThread(TBTNode *root) { //通过中序遍历建立中序线索二叉树
27     TBTNode *pre=NULL;
28     if(root!=NULL) {
29         InThread(root,pre);
30         pre->rchild=NULL;
31         pre->rtag=1;
32     }
33 }
34 int main() {
35 
36 
37     return 0;
38 }

 

线索二叉树的遍历

标签:中序遍历   typedef   stream   root   nbsp   线索二叉树   ati   ==   中序   

原文地址:https://www.cnblogs.com/aiqinger/p/12690258.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!