The first line of input contains an integer ‘T’ denoting the number of test cases to run. Then the test case follows.
The first line of each test case contains an integer ‘N’ denoting the number of nodes of the binary tree.
The second line of each test case contains ‘N’ single space-separated integers, denoting the Inorder traversal of the binary tree.
The third line of each test case contains ‘N’ single space-separated integers, denoting the Level Order traversal of the binary tree.
For each test case, print the height of the binary tree.
Output for every test case will be printed in a separate line.
You do not need to print anything; it has already been taken care of. Just implement the given function.
1 <= T <= 100
1 <= N <= 3000
1 <= inorder[i] <= N
1 <= levelOrder[i] <= N
Time Limit: 1 sec
Ninja and Tree
Kth Largest Element in BST
Height of Binary Tree
Min Heap
Locked Binary Tree