-
Notifications
You must be signed in to change notification settings - Fork 148
/
Print level wise.cpp
76 lines (64 loc) · 2.06 KB
/
Print level wise.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
/*
Print Level Wise
Given a generic tree, print the input tree in level wise order.
For printing a node with data N, you need to follow the exact format -
N:x1,x2,x3,...,xn
where, N is data of any node present in the generic tree. x1, x2, x3, ...., xn are the children of node N. Note that there is no space in between.
You need to print all nodes in the level order form in different lines.
Input format :
The first line of input contains data of the nodes of the tree in level order form. The order is: data for root node, number of children to root node, data of each of child nodes and so on and so forth for each node. The data of the nodes of the tree is separated by space.
Output Format :
The first and only line of output contains the elements of the tree in level wise order, as described in the task.
Constraints:
Time Limit: 1 sec
Sample Input 1:
10 3 20 30 40 2 40 50 0 0 0 0
Sample Output 1:
10:20,30,40
20:40,50
30:
40:
40:
50:
*/
/************************************************************
Following is the structure for the TreeNode class
template <typename T>
class TreeNode {
public:
T data;
vector<TreeNode<T>*> children;
TreeNode(T data) {
this->data = data;
}
~TreeNode() {
for (int i = 0; i < children.size(); i++) {
delete children[i];
}
}
};
************************************************************/
#include<vector>
#include<queue>
void printLevelWise(TreeNode<int>* root) {
// Write your code here
//edge case
if(root == NULL) {
return;
}
queue<TreeNode<int>*> pending;
pending.push(root);
while(!pending.empty()) {
TreeNode<int> *front = pending.front();
pending.pop();
cout << front -> data << ":";
for(int i = 0; i < front -> children.size(); i++) {
cout << front -> children[i] -> data;
if(i != front -> children.size() - 1){
cout << ",";
}
pending.push(front -> children[i]);
}
cout << endl;
}
}