解题思路:
注意事项:
参考代码:
#include<stdio.h>
#include<string.h>
#include<math.h>
#include<stdlib.h>
typedef struct tree
{
int m;
struct tree *l;
struct tree *r;
}T;
void build(T *root,T *s)
{
if(s->m<root->m)
{
if(root->l)
{
build(root->l,s);
}
else
{
root->l=s;
}
}
else if(s->m>root->m)
{
if(root->r)
{
build(root->r,s);
}
else
{
root->r=s;
}
}
}
void xian(T *s)
{
if(s)
{
printf("%d ",s->m);
xian(s->l);
xian(s->r);
}
}
void zhong(T *s)
{
if(s)
{
zhong(s->l);
printf("%d ",s->m);
zhong(s->r);
}
}
void hou(T *s)
{
if(s)
{
hou(s->l);
hou(s->r);
printf("%d ",s->m);
}
}
int main()
{
int N;
int a[111];
while((scanf("%d",&N))!=EOF)
{
memset(a,0,sizeof(a));
int i;
for(i=0;i<N;i++)
{
scanf("%d",&a[i]);
}
T *root;
root=malloc(sizeof(T));
root->m=a[0];
root->l=NULL;
root->r=NULL;
for(i=1;i<N;i++)
{
T *s;
s=malloc(sizeof(T));
s->m=a[i];
s->l=NULL;
s->r=NULL;
build(root,s);
}
xian(root);
printf("\n");
zhong(root);
printf("\n");
hou(root);
printf("\n");
}
return 0;
}
0.0分
1 人评分
C二级辅导-阶乘数列 (C语言代码)浏览:642 |
C二级辅导-等差数列 (C语言代码)浏览:1315 |
C二级辅导-计负均正 (C语言代码)浏览:698 |
C语言训练-求1+2!+3!+...+N!的和 (C语言代码)浏览:575 |
C语言程序设计教程(第三版)课后习题7.3 (C语言代码)浏览:643 |
蓝桥杯历届试题-九宫重排 (C++代码)浏览:2812 |
ASCII帮了大忙浏览:797 |
C语言程序设计教程(第三版)课后习题7.4 (C语言代码)浏览:1314 |
三角形 (C++代码)记忆化搜索浏览:1318 |
C语言程序设计教程(第三版)课后习题5.6 (C语言代码)浏览:580 |