?? tree.c
字號:
#include <stdio.h>
#include <stdlib.h>
struct tree
{
char info;
struct tree *left;
struct tree *right;
};
struct tree *root; /*樹的第一個結(jié)點*/
struct tree *construct(struct tree *root, struct tree *r, char info);
void print(struct tree *r, int l);
int main(void)
{
char s[80];
root = NULL;
do
{
printf("請輸入一個字符:");
gets(s);
root = construct(root,root,*s);
}while(*s);
print(root,0);
return 0;
}
struct tree *construct(
struct tree *root,
struct tree *r,
char info)
{
if(!r)
{
r = (struct tree *)malloc(sizeof(struct tree));
if(!r)
{
printf("內(nèi)存分配失敗!");
exit(0);
}
r->left = NULL;
r->right = NULL;
r->info = info;
if(!root)
return r;
if(info < root->info)
root->left = r;
else
root->right = r;
return r;
}
if(info < r->info)
construct(r,r->left,info);
else
construct(r,r->right,info);
return root;
}
void print(struct tree *r, int l)
{
int i;
if(!r)
return;
print(r->left,l+1);
for(i = 0;i < l;++i)
printf(" ");
printf("%c\n",r->info);
print(r->right,l+1);
}
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -