-
Notifications
You must be signed in to change notification settings - Fork 161
/
levelorder_BST.cpp
90 lines (89 loc) · 1.52 KB
/
levelorder_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
//traversals in Binary Search Tree
#include<iostream>
#include<queue>
using namespace std;
class node
{
public:
int data;
node* left;
node* right;
node(int d)
{
data=d;
left=right=NULL;
}
};
// creating bst
node* insertbst(node* root,int data)
{
if(root == NULL)
{
root= new node(data);
return root;
}
if (root->data>data)
{
root->left= insertbst(root->left,data);
}
else
{
root->right= insertbst(root->right,data);
}
return root;
}
// enter nodes value
node* bst()
{
node* root = NULL;
int data;
cin>>data;
if (data == -1)
{
return root;
}
while (data != -1)
{
root = insertbst(root,data);
cin>>data;
}
return root;
}
void levelorder(node* root)
{
queue<node*> q;
q.push(root);
q.push(NULL);
while (!q.empty())
{
node* n=q.front();
q.pop();
if (n==NULL)
{
cout<<endl;
if(!q.empty())
{
q.push(NULL);
}
}
else
{
cout<<n->data<<" ";
if (n->left)
{
q.push(n->left);
}
if(n->right)
{
q.push(n->right);
}
}
}
}
int main()
{
node* root = bst();
cout<<"Levelorder"<<endl;
levelorder(root);
return 0;
}