-
Notifications
You must be signed in to change notification settings - Fork 1
/
二叉排序树后序遍历树.cpp
70 lines (66 loc) · 872 Bytes
/
二叉排序树后序遍历树.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
#include<iostream>
using namespace std;
struct node
{
int data;
struct node *left, *right;
node()
{
data = -2000000000;
left = right = NULL;
}
}*root;
int main()
{
void show(node*);
void creat();
creat();
show(root);
return 0;
}
void creat()
{
int tn, nums;
void add(node*, int);
cin >> nums;
root = new node;
cin >> root->data;
nums--;
while (nums--)
{
cin >> tn;
add(root, tn);
}
}
void add(node* tnode, int tn)
{
if (tn<tnode->data)
{
if (tnode->left == NULL)
{
tnode->left = new node;
tnode->left->data = tn;
}
else
add(tnode->left, tn);
}
else if (tn>tnode->data)
{
if (tnode->right == NULL)
{
tnode->right = new node;
tnode->right->data = tn;
}
else
add(tnode->right, tn);
}
}
void show(node* tnode)
{
if (tnode)
{
show(tnode->left);
show(tnode->right);
cout << tnode->data << ' ';
}
}