-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathInserting_node_in_BST.cpp
75 lines (74 loc) · 1.65 KB
/
Inserting_node_in_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
#include <bits/stdc++.h>
using namespace std;
class node{
public:
int data;
node* left;
node* right;
node(int val)
{
data = val;
left = NULL;
right = NULL;
}
};
node* binarytreeformer(int data){
if(data == -1) return NULL;
node* ndoe = new node(data);
int leftnode, rightnode;
cout<<"enter data of left node of "<<data<<endl;
cin>>leftnode;
ndoe->left = binarytreeformer(leftnode);
cout<<"enter data of right node of "<<data<<endl;
cin>>rightnode;
ndoe->right = binarytreeformer(rightnode);
return ndoe;
}
void inserter(node* head, int val){
node* ndoe = new node(val);
node* param = head;
while(true){
if(param->data > val)
{
if(param->left == NULL)
{
param->left = ndoe;
break;
}
param = param->left;
}
else
{
if(param->right == NULL)
{
param->right = ndoe;
break;
}
param = param->right;
}
}
}
void inordertraversal(node* head){
if(head == NULL) return;
inordertraversal(head->left);
cout<<head->data<<" ";
inordertraversal(head->right);
}
int main()
{
int root;
cout<<"Enter the root node data, -1 for empty node"<<endl;
cin>>root;
node* head = binarytreeformer(root);
/*
Following tree is constructed;
4
/ \
2 6
/ \ / \
1 3 5 7
*/
int val = 8;
inserter(head, val);
inordertraversal(head);
}