-
Notifications
You must be signed in to change notification settings - Fork 242
/
Copy pathBST.cpp
46 lines (41 loc) · 792 Bytes
/
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
#include<iostream>
using namespace std;
class Node{
public:
int data;
Node* left;
Node* right;
Node(int d){
this->data=d;
this->left=NULL;
this->right=NULL;
}
};
Node* insertIntoBST(Node* root,int d){
//base case
if(root == NULL){
root= new Node(d);
return root;
}
if(d > root-> data){
root -> right = insertIntoBST(root->right, d);
}
else{
root -> left = insertIntoBST(root->left, d);
}
return root;
}
void takeInput(Node* &root){
int data;
cin>>data;
while(data != -1){
root = insertIntoBST(root,data);
cin>>data;
}
}
int main(){
Node* root;
cout<<"Enter datab to create BST"<<endl;
takeInput(root);
return 0;
}