-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathBST.cpp
123 lines (101 loc) · 2.15 KB
/
BST.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
#include <iostream>
#include <queue>
using namespace std;
struct node {
int n;
node *left;
node *right;
};
class tree {
public:
node *root;
tree() { root = NULL; }
node *newnode( int n ) {
node *ptr = new node;
ptr->n = n;
ptr->left = ptr->right = NULL;
return ptr;
}
void insert( int n, node* &r ) {
if( root == NULL )
{ root = newnode(n); return; }
if( r == NULL )
{ r = newnode(n); return; }
if( n >= r->n )
return insert(n, r->right );
else
return insert(n, r->left );
}
void display( queue<node*> q = queue<node*>(), bool check = 0 ) {
if( check == 0 )
q.push( root );
queue<node*> qq;
cout << "\n";
if( q.front() == NULL )
return;
while( !q.empty() ) {
cout << q.front()->n << " ";
if( q.front()->left != NULL )
qq.push(q.front()->left);
if( q.front()->right != NULL )
qq.push(q.front()->right);
q.pop();
}
if( !qq.empty() )
display( qq, 1 );
}
void inOrder(node *root = NULL, bool check = 0) {
if(!check)
root = this->root;
if( root == NULL )
return;
else {
cout << root->n << " ";
inOrder( root->left, 1);
inOrder( root->right, 1);
}
}
int findmin( node *r ) {
if( r->left != NULL )
return findmin( r->left );
else
return r->n;
}
void del( node* &r, int x ) {
if( root == NULL )
return;
if( r->n == x ) {
if( r->left == NULL && r->right == NULL )
{ delete r; r = NULL; return; }
else if( r->left == NULL && r->right != NULL )
{ node* ptr = r; r = r->right; delete ptr; ptr = NULL; }
else if( r->left != NULL && r->right == NULL )
{ node *ptr = r; r = r->left; delete ptr; ptr = NULL; }
else {
int val = findmin(r->right);
del( r->right, val );
r->n = val;
}
}
else if( r->n > x )
return del( r->left, x );
else if( r->n < x )
return del( r->right, x );
}
};
int main() {
tree t;
while(1) {
int x, c;
cout << "\n\n1. INSERT \n2. DELETE \n Enter choice: "; cin >> c;
cout << "Enter x: "; cin >> x;
if( c == 1 )
t.insert(x, t.root );
else
t.del(t.root, x);
cout << "\n";
t.display();
//cout << "\n\n";
//t.inOrder();
}
}