Problem Description
Given the root of a binary tree, determine if it is a complete binary tree. In a complete binary tree, every level, except possibly the last, is completely filled, and all nodes in the last level are as far left as possible. It can have between 1 and 2^h nodes inclusive at the last level h.
Key Insights
- A complete binary tree has all levels fully filled except possibly the last level.
- In the last level, nodes must be filled from left to right without any gaps.
- A level-order traversal (BFS) can help verify the completeness of the tree by checking the order of node insertion and ensuring no gaps appear before the last level.
Space and Time Complexity
Time Complexity: O(n), where n is the number of nodes in the tree, as we visit each node once. Space Complexity: O(n), in the worst case, for the queue used in the breadth-first search (BFS).
Solution
To determine if a binary tree is complete, we can use a breadth-first search (BFS) approach. We will utilize a queue to perform the level-order traversal of the tree. As we traverse the tree, we check for any null nodes. If we encounter a null node, all subsequent nodes must also be null to satisfy the completeness condition. If we find any non-null nodes after a null node, the tree is not complete.