public class Q074_Construct_a_tree_from_Inorder_and_Level_order_traversals {
public static void main(String[] args) {
int[] in = {4, 8, 10, 12, 14, 20, 22, 25};
int[] level = {20, 8, 22, 4, 12, 25, 10, 14};
TreeNode root = constructTree(in, level, 8);
root.print();
}