-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtree.cpp
More file actions
97 lines (78 loc) · 1.29 KB
/
tree.cpp
File metadata and controls
97 lines (78 loc) · 1.29 KB
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
#include<iostream>
#include<queue>
using namespace std;
class Node{
public:
int data;
Node *left;
Node*right;
Node(int d){
data = d;
left = right = NULL;
}
};
// Should Read Input and Recursively build the tree
Node* buildTree(){
int d;
cin>>d;
if(d==-1){
return NULL;
}
Node * root = new Node(d);
root->left = buildTree();
root->right = buildTree();
return root;
}
void printTree(Node *root){
if(root==NULL){
return;
}
printTree(root->left);
cout<<root->data<<" ";
printTree(root->right);
}
//Preorder traversal for searching
bool search(Node *root,int key){
if(root==NULL){
return false;
}
if(root->data==key || search(root->left,key)|| search(root->right,key)){
return true;
}
return false;
}
void levelOrderPrint(Node *root){
//BFS
queue<Node*> q;
q.push(root);
q.push(NULL);
while(!q.empty()){
Node *temp = q.front();
if(temp==NULL){
q.pop();
cout<<endl;
if(!q.empty()){
q.push(NULL);
}
}
else{
cout<<temp->data<<" ";
q.pop();
if(temp->left){
q.push(temp->left);
}
if(temp->right){
q.push(temp->right);
}
}
}
return;
}
int main(){
//1 2 4 -1 -1 5 7 -1 -1 -1 3 -1 6 -1 -1
Node *root = buildTree();
// printTree(root);
levelOrderPrint(root);
// cout<< search(root,7);
return 0;
}