树结构练习——排序二叉树的中序遍历 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 <stdio.h>#include <stdlib.h>int p[1000],k;typedef struct node{ int data; struct node *l,*r;}node;node *creat_BinSortTree(node *root,int key)//建立二叉排序树{ if(root){//root里面有东西的时候,就开始比较传进来数的大小 if(root->data > key)//如果比它大就放在左字数 root->l = creat_BinSortTree(root->l,key); else//否则就放在右子树 root->r = creat_BinSortTree(root->r,key); } else{ root = (node *)malloc(sizeof(struct node));//如果root啥也没有的话就给它开个内存,然后左右子树都赋空,并且root的值为key root->l = NULL; root->r = NULL; root->data = key; } return root;//这里要主要要搞个返回的,写成void容易错}void *inOrderPrint(node *root){ int i = 0; if(root){ inOrderPrint(root->l); p[k++] = root->data;//中序输出因为要注意格式,存在数组中好搞一点 inOrderPrint(root->r); }}int main(){ int n,i; int a; while(~scanf("%d",&n)){ node *root = NULL;//这里千万别忘记要让初始的root被赋值为NULL for(i=0; i<n; i++){ scanf("%d",&a); root = creat_BinSortTree(root,a); } k = 0; inOrderPrint(root); printf("%d",p[0]); for(i=1; i<n; i++) printf(" %d",p[i]); printf("/n"); } return 0;}新闻热点
疑难解答