树结构练习——排序二叉树的中序遍历
Time Limit: 1000MS Memory limit: 65536K
题目描述
在树结构中,有一种特殊的二叉树叫做排序二叉树,直观的理解就是——(1).每个节点中包含有一个关键值 (2).任意一个节点的左子树(如果存在的话)的关键值小于该节点的关键值 (3).任意一个节点的右子树(如果存在的话)的关键值大于该节点的关键值。现给定一组数据,请你对这组数据按给定顺序建立一棵排序二叉树,并输出其中序遍历的结果。
输入
输入包含多组数据,每组数据格式如下。
第一行包含一个整数n,为关键值的个数,关键值用整数表示。(n<=1000)
第二行包含n个整数,保证每个整数在int范围之内。
输出
为给定的数据建立排序二叉树,并输出其中序遍历结果,每个输出占一行。
示例输入
1 2 2 1 20
示例输出
2 1 20
#include <stdio.h> #include <string.h> #include <stdlib.h> struct node { int data; struct node *l,*r; }; void creat(struct node *&p,int cd) { if(cd<p->data) { if(p->l) creat(p->l,cd); else { struct node*q; q=(struct node*)malloc(sizeof(struct node)); q->data=cd; q->l=NULL; q->r=NULL; p->l=q; return ; } } else { if(p->r) creat(p->r,cd); else { struct node *q; q=(struct node*)malloc(sizeof(struct node)); q->data=cd; q->l=NULL; q->r=NULL; p->r=q; return ; } } } int s[10001],count; void mid(node *&p) { if(p==NULL) return ; mid(p->l); s[count++]=p->data; mid(p->r); } int main() { struct node *head; int ch,i,n; while(~scanf("%d",&n)) { count=0; for(i=0;i<n;i++) { scanf("%d",&ch); if(i==0) { head=(struct node*)malloc(sizeof(struct node)); head->data=ch; head->l=NULL; head->r=NULL; continue; } creat(head,ch); } mid(head); for(i=0;i<n;i++) { if(i==n-1) printf("%d\n",s[i]); else printf("%d ",s[i]); } } return 0; }