-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathdemo_binary_search_tree_1.cpp
More file actions
executable file
·82 lines (67 loc) · 1.3 KB
/
demo_binary_search_tree_1.cpp
File metadata and controls
executable file
·82 lines (67 loc) · 1.3 KB
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
71
72
73
74
75
76
77
78
79
80
81
82
#include <cstdio>
#include <cstdlib>
#include <string>
#include <iostream>
using namespace std;
struct Node {
int key;
Node *right, *left, *parent;
};
Node *root, *NIL;
void insert(int k ) {
Node *y = NIL;
Node *x = root;
Node *z;
z = (Node *)malloc(sizeof(Node));
z->key = k;
z->left = NIL;
z->right = NIL;
while (x != NIL) {
y = x;
if (z->key < x->key) {
x = x->left;
} else {
x = x->right;
}
}
z->parent = y;
if (y == NIL) {
root = z;
} else {
if (z->key < y->key) {
y->left = z;
} else {
y->right = z;
}
}
}
void inorder(Node *u) {
if (u == NIL) return;
inorder(u->left);
printf(" %d", u->key);
inorder(u->right);
}
void preorder(Node *u) {
if (u == NIL) return;
printf(" %d", u->key);
preorder(u->left);
preorder(u->right);
}
int main () {
int n, i, x;
string com;
scanf("%d", &n);
for (int i = 0; i < n; i++) {
cin >> com;
if (com == "insert") {
scanf("%d", &x);
insert(x);
} else if (com == "print") {
inorder(root);
printf("\n");
preorder(root);
printf("\n");
}
}
return 0;
}