3143 二叉树的序遍历
2018-06-17 22:57:04来源:未知 阅读 ()
3143 二叉树的序遍历
求一棵二叉树的前序遍历,中序遍历和后序遍历
第一行一个整数n,表示这棵树的节点个数。
接下来n行每行2个整数L和R。第i行的两个整数Li和Ri代表编号为i的节点的左儿子编号和右儿子编号。
输出一共三行,分别为前序遍历,中序遍历和后序遍历。编号之间用空格隔开。
5
2 3
4 5
0 0
0 0
0 0
1 2 4 5 3
4 2 5 1 3
4 5 2 3 1
1 #include<iostream> 2 using namespace std; 3 int root; 4 struct node 5 { 6 int parent; 7 int date; 8 int lchild; 9 int rchild; 10 }a[101]; 11 void xianxu(int i) 12 { 13 cout<<i<<" "; 14 if(a[i].lchild!=0) 15 { 16 xianxu(a[i].lchild); 17 } 18 if(a[i].rchild!=0) 19 { 20 xianxu(a[i].rchild); 21 } 22 } 23 void zhongxu(int i) 24 { 25 if(a[i].lchild!=0) 26 { 27 zhongxu(a[i].lchild); 28 } 29 cout<<i<<" "; 30 if(a[i].rchild!=0) 31 { 32 zhongxu(a[i].rchild); 33 } 34 } 35 void houxu(int i) 36 { 37 38 if(a[i].lchild!=0) 39 { 40 houxu(a[i].lchild); 41 } 42 if(a[i].rchild!=0) 43 { 44 houxu(a[i].rchild); 45 } 46 cout<<i<<" "; 47 } 48 int main() 49 { 50 int n; 51 cin>>n; 52 for(int i=1;i<=n;i++) 53 { 54 cin>>a[i].lchild>>a[i].rchild; 55 a[a[i].lchild].parent=i; 56 a[a[i].rchild].parent=i; 57 } 58 for(int i=1;i<=n;i++) 59 { 60 if(a[i].parent==0) 61 { 62 root=i; 63 } 64 } 65 xianxu(root); 66 cout<<endl; 67 zhongxu(root); 68 cout<<endl; 69 houxu(root); 70 return 0; 71 }
标签:
版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有
- 二叉搜索树_BST 2020-05-30
- 二叉树 2020-05-02
- 二叉排序树 2020-05-02
- 二叉堆(3)SkewHeap 2020-02-20
- 二叉堆(2)LeftistHeap 2020-02-19
IDC资讯: 主机资讯 注册资讯 托管资讯 vps资讯 网站建设
网站运营: 建站经验 策划盈利 搜索优化 网站推广 免费资源
网络编程: Asp.Net编程 Asp编程 Php编程 Xml编程 Access Mssql Mysql 其它
服务器技术: Web服务器 Ftp服务器 Mail服务器 Dns服务器 安全防护
软件技巧: 其它软件 Word Excel Powerpoint Ghost Vista QQ空间 QQ FlashGet 迅雷
网页制作: FrontPages Dreamweaver Javascript css photoshop fireworks Flash