您好,登錄后才能下訂單哦!
#include <stdio.h>
#include <stdlib.h>
struct node{
char data;
struct node* left;
struct node* right;
};
void preorder(struct node* root) //前序遍歷
{
if(root == NULL)
return ;
else {
printf("%c\t", root->data);
pre_order(root->left);
pre_order(root->right);
}
}
void minorder(struct node* root) //中序遍歷
{
if(root == NULL)
return ;
else {
min_order(root->left);
printf("%c\t", root->data);
min_order(root->right);
}
}
void postorder(struct node* root) //后序遍歷
{
if(root == NULL)
return ;
else {
postorder(root->left);
postorder(root->right);
printf("%c\t", root->data);
}
}
struct node* create(struct node* root) //利用前序創(chuàng)建樹,中序和后序不能創(chuàng)建樹
{
char ch = getchar();
if(ch == '#')
return NULL;
else {
root = malloc(sizeof(struct node));
root->data = ch;
root->left = create(root->left);
root->right = create(root->right);
return root;
}
}
int main()
{
struct node* root = NULL;
root = create(root);
preorder(root);
printf("\n");
minorder(root);
printf("\n");
postorder(root);
printf("\n");
return 0;
}
免責聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權內(nèi)容。