-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbinarysearchtree.cpp
183 lines (147 loc) · 3.56 KB
/
binarysearchtree.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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
#include <bits/stdc++.h>
//halo
using namespace std;
using ll = long long ;
struct node{
int val;
node *left;
node *right;
node(int x){
val = x;
left = right = NULL;
}
};
void makeRoot(node *root, int u, int v, char c){
if(c == 'L'){
root->left = new node(v);
}
else{
root->right = new node(v);
}
}
//////////////////////////////////DUYỆT///////////////////////////////////////
void inorder(node *root){// Duyệt giữa
if(root != NULL){
inorder(root->left);
cout << root->val << " ";
inorder(root->right);
}
}
int res = 0;
void preorder(node *root){// Duyệt trước
if(root != NULL){
cout << root->val << " ";
preorder(root->left);
preorder(root->right);
}
}
void posorder(node *root){
if(root != NULL){
posorder(root->left);
posorder(root->right);
cout << root->val << " ";
}
}
void BFS(node *root){ // Duyệt theo cấp
queue<node *> Q;
Q.push(root);
while(!Q.empty()){
node *x = Q.front(); Q.pop();
cout << x->val <<" ";
if(x->left != NULL){
Q.push(x->left);
}
if(x->right != NULL){
Q.push(x->right);
}
}
}
void spiralOrdeer(node *root){
}
/////////////////////////////////DUYỆT////////////////////////////////////
bool search(node *root, int key){// tim kiem
if(root == NULL){
return false;
}
if(root->val == key){
return true;
}
else if(key < root->val){
return search(root->left, key);
}
else{
return search(root->right, key);
}
}
node *makeNode(int x){
node *newNode = new node(x);
newNode->left = NULL;
newNode->right = NULL;
return newNode;
}
node *minNode(node *root){
node *tmp = root;
while(tmp != NULL && tmp->left != NULL){
tmp = tmp->left;
}
return tmp;
}
node *insertBinary(node *root, int key){
if(root == NULL){
return makeNode(key);
}
if(key < root->val){
root->left = insertBinary(root->left, key);
}
else if(key > root->val){
root->right = insertBinary(root->right, key);
}
}
node *deleteBinary(node *root, int key){
if(root == NULL){
return root;
}
if(key < root->val){
root->left = deleteBinary(root->left, key);
}
else if(key > root->val){
root->right = deleteBinary(root->right, key);
}
else{
if(root->left == NULL){
node *tmp = root->right;
delete root;
return tmp;
}
else if(root->right == NULL){
node *tmp = root->right;
delete root;
return tmp;
}
else{
node *tmp = minNode(root->right);
root->val = tmp->val;
root->right = deleteBinary(root->right, tmp->val);
}
}
return root;
}
int main(){
#ifndef ONLINE_JUDGE
freopen("input.txt", "r", stdin);
freopen("output.txt", "w", stdout);
#endif
//ios::sync_with_stdio(false);
//cin.tie(nullptr);
node *root = NULL;
int n; cin >> n;
for(int i = 1; i <= n; i ++){
int u; cin >> u;
root = insertBinary(root, u);
}
BFS(root);
cout << endl << search(root, 12);
root = deleteBinary(root, 1);
cout << endl << search(root, 1);
return 0;
}