码迷,mamicode.com
首页 > 编程语言 > 详细

树结构练习——排序二叉树的中序遍历

时间:2015-08-19 16:59:14      阅读:174      评论:0      收藏:0      [点我收藏+]

标签:二叉排序树      

树结构练习——排序二叉树的中序遍历

Time Limit: 1000ms   Memory limit: 65536K  有疑问?点这里^_^

题目描述

在树结构中,有一种特殊的二叉树叫做排序二叉树,直观的理解就是——(1).每个节点中包含有一个关键值 (2).任意一个节点的左子树(如果存在的话)的关键值小于该节点的关键值 (3).任意一个节点的右子树(如果存在的话)的关键值大于该节点的关键值。现给定一组数据,请你对这组数据按给定顺序建立一棵排序二叉树,并输出其中序遍历的结果。
 

输入

输入包含多组数据,每组数据格式如下。
第一行包含一个整数n,为关键值的个数,关键值用整数表示。(n<=1000)
第二行包含n个整数,保证每个整数在int范围之内。

输出

为给定的数据建立排序二叉树,并输出其中序遍历结果,每个输出占一行。
 

示例输入

1
2
2
1 20

示例输出

2
1 20

提示

 

来源

 赵利强

示例程序

  1. #include<stdio.h>  
  2. #include<string.h>  
  3. #include<stdlib.h>  
  4.   
  5. struct node  
  6. {  
  7.     int data;  
  8.     struct node *l, *r;  
  9. };  
  10.   
  11. int cnt;  
  12. int n;  
  13.   
  14. struct node *build(struct node *&tree, int a)  
  15. {  
  16.     if(tree==NULL)  
  17.     {  
  18.         tree=new node;  
  19.         tree->l=NULL;  
  20.         tree->r=NULL;  
  21.         tree->data=a;  
  22.     }  
  23.     else  
  24.     {  
  25.         if(a<tree->data)  
  26.             build(tree->l, a);  
  27.         else  
  28.             build(tree->r, a);  
  29.     }  
  30.     return tree;  
  31. };  
  32.   
  33. void mid(struct node *tree)  
  34. {  
  35.     if(tree)  
  36.     {  
  37.         mid(tree->l);  
  38.         if(cnt==1)  
  39.         {  
  40.             printf("%d", tree->data);  
  41.             cnt++;  
  42.         }  
  43.         else  
  44.         {  
  45.             printf(" %d", tree->data);  
  46.         }  
  47.         mid(tree->r);  
  48.     }  
  49. }  
  50.   
  51. int main()  
  52. {  
  53.     int n, x;  
  54.     while(~scanf("%d", &n))  
  55.     {  
  56.         cnt=1;  
  57.         struct node *tree=NULL;  
  58.         for(int i=0;i<n;i++)  
  59.         {  
  60.             scanf("%d", &x);  
  61.             build(tree, x);  
  62.         }  
  63.         mid(tree);  
  64.         printf("\n");  
  65.     }  
  66.     return 0;  
  67. }  
  68.   
  69.   

 

版权声明:本文为博主原创文章,未经博主允许不得转载。

树结构练习——排序二叉树的中序遍历

标签:二叉排序树      

原文地址:http://blog.csdn.net/zhacmer/article/details/47781009

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