-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbst.cpp
executable file
·137 lines (91 loc) · 1.61 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
124
#include <algorithm>
#include <iostream>
#include <vector>
#include <cmath>
#include <cstdio>
using namespace std;
struct node{
int data;
node * left;
node * right;
};
int search(node * root, int target){
if(root==NULL){
return 0;
}
if(root->data==target)
return 1;
if(root->data < target){
return search(root->right, target);
}
else
return search(root->left, target);
}
node * newNode(int data){
node * ptr = new node;
ptr-> data = data;
ptr->left = NULL;
ptr->right= NULL;
return ptr;
}
node * insert(node * root, int data){
if (root==NULL){
return newNode(data);
}
if (data<=root->data)
root->left = insert(root->left, data);
else
root->right = insert(root->right, data);
return root;
}
int maxDepth(){
}
int minDepth(){
}
int minElement(){
}
int maxElement(){
}
int LCA(){
}
int del_tree(){
}
node * create_tree(){
int a,n,val;
cin>>n;
cin>>val;
node * root=newNode(val);
for (int i=0; i<n-1; i++){
cin>>a;
insert(root,a);
}
return root;
}
/*int traverse(node * root, node *parent){
if(root->left==NULL){
cout<<root->data;
if(root->right==NULL)
cout<<parent->data;
return 0;
}
else
traverse()
}*/
node * traverse(node * root){
if(root!=NULL){
//for inorder use this
traverse(root->left);
cout<<root->data;
traverse(root->right);
/*
for a pre order traversal, cout the root first and then make the recursive call for both nodes.
for a post order traversal, cout the roor and the end.
*/
}
}
int main(){
node * root;
root=create_tree();
traverse(root);
return 0;
}