You are given a binary tree. Your task is to check whether the given binary tree is a Complete Binary tree or not.
A Complete Binary tree is a binary tree whose every level, except possibly the last, is completely filled, and all nodes in the last level are placed at the left end.
Example of a complete binary tree :

The first line of input contains an integer 'T' representing the number of test cases. Then the test cases follow.
The only line of each test case contains elements in the level order form. The line consists of values of nodes separated by a single space. In case a node is null, we take -1 in its place.
For example, the input for the tree depicted in the below image would be :

1
2 3
4 -1 5 6
-1 7 -1 -1 -1 -1
-1 -1
Explanation :
Level 1 :
The root node of the tree is 1
Level 2 :
Left child of 1 = 2
Right child of 1 = 3
Level 3 :
Left child of 2 = 4
Right child of 2 = null (-1)
Left child of 3 = 5
Right child of 3 = 6
Level 4 :
Left child of 4 = null (-1)
Right child of 4 = 7
Left child of 5 = null (-1)
Right child of 5 = null (-1)
Left child of 6 = null (-1)
Right child of 6 = null (-1)
Level 5 :
Left child of 7 = null (-1)
Right child of 7 = null (-1)
The first not-null node(of the previous level) is treated as the parent of the first two nodes of the current level. The second not-null node (of the previous level) is treated as the parent node for the next two nodes of the current level and so on.
The input ends when all nodes at the last level are null(-1).
Note :
The above format was just to provide clarity on how the input is formed for a given tree.
The sequence will be put together in a single line separated by a single space. Hence, for the above-depicted tree, the input will be given as:
1 2 3 4 -1 5 6 -1 7 -1 -1 -1 -1 -1 -1
Output Format :
For each test case, print 1 if the given Binary Tree is a complete Binary Tree, otherwise, print 0.
Print the output of each test case in a separate line.
Note :
You don’t need to print anything; It has already been taken care of. Just implement the given function.
1 <= T <= 100
1 <= N <= 3000
1 <= data <= 10^5 and data!=-1
Where ‘N’ is the total number of nodes in the binary tree, and 'data' is the value of the binary tree node
Time Limit: 1 sec
2
1 3 2 4 -1 -1 -1 -1 -1
1 2 3 -1 -1 4 5 -1 -1 -1 -1
1
0
For the first test case:
The given Binary Tree is a Complete Binary Tree. Hence, the answer is 1 in this case.

For the second test case:
The given Binary Tree is not a complete Binary Tree. Hence, the answer is 0 in this case.

2
1 2 -1 -1 -1
5 7 8 -1 2 -1 -1 -1 -1
1
0
All the Non-Null nodes of a Complete Binary tree occur consecutively in the Level order Traversal of the Tree.
The idea is to observe the fact that in the Level Order Traversal of any Complete Binary Tree, all the Non-Null nodes come in succession, and all the Null nodes come after them. Using this observation, we can check whether the given binary tree is a complete binary tree. The level order traversal can be done with an approach that is similar to Breadth First Search (BFS). While traversing the Tree in level order, we will maintain a flag variable to check whether we have found a Null node till now. If, at any time, we find a Non-Null node after a Null node, then the given binary tree will not be a Complete Binary Tree, otherwise, it will always be a complete binary tree.
Steps:
As each node of the Binary Tree is added and removed from the Binary Tree only once. Hence, the overall Time Complexity is O(N).
The number of elements in the queue will be equal to the maximum number of nodes at any level of the Binary Tree, which can be N+1 in the worst case. Hence, the overall Space Complexity is O(N).