-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathdemo_binary_search_tree_2.cpp
executable file
·97 lines (81 loc) · 1.65 KB
/
demo_binary_search_tree_2.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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
#include <stdio.h>
#include <stdlib.h>
#include <string>
#include <iostream>
using namespace std;
struct Node {
int key;
Node *right, *left, *parent;
};
Node *root, *NIL;
Node * find (Node *u, int k) {
while (u != NIL && k != u->key) {
if (k < u->key) {
u = u->left;
} else {
u = u->right;
}
}
return u;
}
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 (k < 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);
inorder(u->left);
inorder(u->right);
}
int main () {
int n, i, x;
string com;
scanf("%d", &n);
for (i = 0; i < n; i++) {
cin >> com;
if (com[0] == 'f') {
scanf("%d", &x);
Node *t = find(root, x);
if (t != NIL) printf("yes\n");
else printf("no\n");
} else if (com == "insert") {
scanf("%d", &x);
insert(x);
} else if (com == "print") {
inorder(root);
printf("\n");
preorder(root);
printf("\n");
}
}
}