-
Notifications
You must be signed in to change notification settings - Fork 0
/
arraytobst.cpp
73 lines (63 loc) · 1.04 KB
/
arraytobst.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
#include <iostream>
using namespace std;
class Node {
public:
int data;
Node *left;
Node *right;
Node(int data);
};
Node::Node(int data) {
this->data=data;
}
Node* arrToBST(int arr[],int start,int end){
if (start > end) {
return NULL;
}
int mid=(start+end)/2;
Node *root=new Node(arr[mid]);
root->left=arrToBST(arr,start,mid-1);
root->right=arrToBST(arr,mid+1,end);
return root;
}
void preOrder(Node *root){
if(root == NULL) {
return ;
}
cout << root->data << " ";
preOrder(root->left);
preOrder(root->right);
}
void inOrder(Node *root){
if(root == NULL) {
return ;
}
inOrder(root->left);
cout << root->data << " ";
inOrder(root->right);
}
void postOrder(Node *root){
if(root == NULL) {
return ;
}
postOrder(root->left);
postOrder(root->right);
cout << root->data << " ";
}
int main() {
int arr[6];
arr[0]=4;
arr[1]=6;
arr[2]=8;
arr[3]=9;
arr[4]=10;
arr[5]=12;
Node *root;
root=arrToBST(arr,0,5);
preOrder(root);
cout << "----" << endl;
inOrder(root);
cout << "----" << endl;
postOrder(root);
return 1;
}