设为首页 加入收藏

TOP

C语言树结构练习之排序二叉树的中序遍历
2018-02-06 13:13:15 】 浏览:131
Tags:语言 结构 习之 排序

C语言树结构练习之排序二叉树的中序遍历

Time Limit: 1000MS Memory Limit: 65536KB

Submit Statistic

Problem Description

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

Input

输入包含多组数据,每组数据格式如下。

第一行包含一个整数n,为关键值的个数,关键值用整数表示。(n<=1000)

第二行包含n个整数,保证每个整数在int范围之内。

Output

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

Example Input

1

2

2

1 20

Example Output

2

1 20

#include 
  
   
#include 
   
     #include 
    
      int i, s; struct node { int data; struct node *l, *r; }; struct node *creat(struct node *root) { if(root == NULL) { root = (struct node*) malloc (sizeof(struct node));//申请空间,如果在if外面申请,一开始就不是NULL了,就会进入else. root -> data = s; root -> l = NULL; root -> r = NULL; return root; } else { if(s >= root -> data) { root -> r = creat(root -> r); } if(s < root -> data) { root -> l = creat(root -> l); } } return root; } int flag; void zhongxv(struct node *root) { if(root) { zhongxv(root -> l); if(flag) printf(" %d", root -> data); else printf("%d", root -> data); flag++; zhongxv(root -> r); } } int main() { int t; while(~scanf("%d", &t)) { flag = 0; struct node *root = NULL;//先初始化。并且放在for循坏外面。 for(i = 0; i < t; i++) { scanf("%d", &s); root = creat(root); } zhongxv(root); printf("\n"); } return 0; }
    
   
  
】【打印繁体】【投稿】【收藏】 【推荐】【举报】【评论】 【关闭】 【返回顶部
上一篇for循环控制的意义(代码实例) 下一篇C语言数据结构排序与查找之一趟快..

最新文章

热门文章

Hot 文章

Python

C 语言

C++基础

大数据基础

linux编程基础

C/C++面试题目