-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path1. CreatingBinaryTree.cpp
81 lines (76 loc) · 1.52 KB
/
1. CreatingBinaryTree.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
#include <bits/stdc++.h>
using namespace std;
class Node
{
public:
int data;
Node *left;
Node *right;
Node(int val)
{
data = val;
left = NULL;
right = NULL;
}
};
Node *CreateBinaryTree(Node *root)
{
int data;
cout << "Enter data : ";
cin >> data;
if (data == -1)
{
return NULL;
}
root = new Node(data);
cout << "Enter left child of " << data << " : ";
root->left = CreateBinaryTree(root->left);
cout << "Enter right child of " << data << " : ";
root->right = CreateBinaryTree(root->right);
return root;
}
void LevelOrderTraversal(Node *root)
{
if (root == NULL)
{
return;
}
queue<Node *> q;
q.push(root);
q.push(NULL);
while (!q.empty())
{
Node *current = q.front();
if (current == NULL)
{
cout << endl;
q.pop();
if (!q.empty()) // Queue is not empty
{
q.push(NULL);
}
continue;
}
cout << current->data << " ";
if (current->left != NULL)
{
q.push(current->left);
}
if (current->right != NULL)
{
q.push(current->right);
}
q.pop();
}
}
int main()
{
Node *root = NULL;
root = CreateBinaryTree(root);
cout << "Level Order Traversal : " << endl;
LevelOrderTraversal(root);
cout << endl;
return 0;
}
// Test Input : 1 2 4 -1 -1 5 -1 -1 3 6 -1 -1 7 -1 -1
// Output : 1 2 3 4 5 6 7