Tree: Level Order Traversal
import java.util.*;
import java.io.*;
class Node {
Node left;
Node right;
int data;
Node(int data) {
this.data = data;
left = null;
right = null;
}
}
class Solution {
/*
class Node
int data;
Node left;
Node right;
*/
public static void levelOrder(Node root) {
StringBuilder out = new StringBuilder();
Queue<Node> q = new LinkedList<Node>();
q.add(root);
while(!q.isEmpty()) {
Node current= q.poll();
out.append(current.data+" ");
if(current.left != null)
q.add(current.left);
if(current.right !=null)
q.add(current.right);
}
System.out.println(out.toString());
}
public static Node insert(Node root, int data) {
if(root == null) {
return new Node(data);
} else {
Node cur;
if(data <= root.data) {
cur = insert(root.left, data);
root.left = cur;
} else {
cur = insert(root.right, data);
root.right = cur;
}
return root;
}
}
public static void main(String[] args) {
Scanner scan = new Scanner(System.in);
int t = scan.nextInt();
Node root = null;
while(t-- > 0) {
int data = scan.nextInt();
root = insert(root, data);
}
scan.close();
levelOrder(root);
}
}
Like this:
Like Loading...
Related