-
Notifications
You must be signed in to change notification settings - Fork 1
/
Level_Order_Traversal.java
108 lines (101 loc) · 2.48 KB
/
Level_Order_Traversal.java
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
98
99
100
101
102
103
104
105
106
107
108
{
// INITIAL CODE
import java.util.Scanner;
import java.util.LinkedList;
import java.util.Queue;
import java.util.Stack;
import java.util.HashMap;
import java.util.*;
import java.lang.*;
import java.io.*;
// A Binary Tree node
class Node
{
int data;
Node left, right;
Node(int item)
{
data = item;
left = right = null;
}
}
class Drivercode
{
// driver function to test the above functions
public static void main(String args[])
{
// Input the number of test cases you want to run
Scanner sc = new Scanner(System.in);
int t = sc.nextInt();
//Node root=null;
while (t > 0)
{
HashMap<Integer, Node> m = new HashMap<Integer, Node> ();
int n = sc.nextInt();
Node root=null;
while (n > 0)
{
int n1 = sc.nextInt();
int n2 = sc.nextInt();
char lr = sc.next().charAt(0);
// cout << n1 << " " << n2 << " " << (char)lr << endl;
Node parent = m.get(n1);
if (parent == null)
{
parent = new Node(n1);
m.put(n1, parent);
if (root == null)
root = parent;
}
Node child = new Node(n2);
if (lr == 'L')
parent.left = child;
else
parent.right = child;
m.put(n2, child);
n--;
}
Level_order_traversal g = new Level_order_traversal();
g.levelOrder(root);
System.out.println();
t--;
}
}
}
}
/*This is a function problem.You only need to complete the function given below*/
/*
class Node
{
int data;
Node left, right;
Node(int item)
{
data = item;
left = right = null;
}
}
*/
class Level_order_traversal
{
//You are required to complete this method
static void levelOrder(Node node)
{
// Your code here
if(node==null){
return;
}
Queue<Node> queue = new LinkedList<>();
queue.add(node);
while(!queue.isEmpty()){
Node cur = queue.poll();
if(cur.left!=null){
queue.add(cur.left);
}
if(cur.right!=null){
queue.add(cur.right);
}
System.out.print(cur.data + " ");
}
}
}