Company: Microsoft, Housing.com, Hike, Flipkart, Amazon, Adobe, Accolite, Teradata, PayU, Ola-Cabs
Question:
Write a function to print spiral order traversal of a tree. For below tree, function should print 1, 2, 3, 4, 5, 6, 7.
Input:
The task is to complete the method which takes one argument, root of the Tree. The struct node has a data part which stores the data, pointer to left child and pointer to right child.
There are multiple test cases. For each test case, this method will be called individually.
Output:
The function should print level order traversal in spiral form .
Constraints:
1 <=T<= 30
1 <=Number of nodes<= 3000
1 <=Data of a node<= 1000
Example:
Input:
2
2
1 2 R 1 3 L
4
10 20 L 10 30 R 20 40 L 20 60 R
The task is to complete the method which takes one argument, root of the Tree. The struct node has a data part which stores the data, pointer to left child and pointer to right child.
There are multiple test cases. For each test case, this method will be called individually.
Output:
The function should print level order traversal in spiral form .
Constraints:
1 <=T<= 30
1 <=Number of nodes<= 3000
1 <=Data of a node<= 1000
Example:
Input:
2
2
1 2 R 1 3 L
4
10 20 L 10 30 R 20 40 L 20 60 R
Output:
1 3 2
10 20 30 60 40
1 3 2
10 20 30 60 40
There are two test cases. First case represents a tree with 3 nodes and 2 edges where root is 1, left child of 1 is 3 and right child of 1 is 2. Second test case represents a tree with 4 edges and 5 nodes.
CODE:
class Node
{
int data;
Node left, right;
Node(int item)
{
data = item;
left = right = null;
}
}
class Solution
{
void printSpiral(Node node)
{
if(node==null){return;}
Stack <Node> s1= new Stack<>();
Stack <Node> s2= new Stack<>();
s1.push(node);
while(!s1.isEmpty() || !s2.isEmpty()){
while(!s1.isEmpty()){
Node tempNode= s1.peek();
s1.pop();
System.out.print(tempNode.data+" ");
if(tempNode.right!=null){
s2.push(tempNode.right);
}
if(tempNode.left!=null){
s2.push(tempNode.left);
}
}
while(!s2.isEmpty()){
Node tempNode= s2.peek();
s2.pop();
System.out.print(tempNode.data+" ");
if(tempNode.left!=null){
s1.push(tempNode.left);
}
if(tempNode.right!=null){
s1.push(tempNode.right);
}
}
}
}
}
EXECUTION TIME: 0.74s
Comments
Post a Comment