Problem Description
Given the root of a complete binary tree, return the number of nodes in the tree. Every level, except possibly the last, is completely filled, and all nodes in the last level are as far left as possible.
Key Insights
- A complete binary tree has a specific structure that allows us to efficiently count nodes.
- The height of the tree can be determined by traversing down the leftmost path.
- The number of nodes in a complete binary tree can be calculated using the height and properties of binary trees.
Space and Time Complexity
Time Complexity: O(log^2 n)
Space Complexity: O(1)
Solution
To count the nodes in a complete binary tree, we can take advantage of its properties. First, we compute the height of the tree. Then, we can perform a binary search on the last level to determine how many nodes exist at that level. This approach allows us to count the nodes in less than O(n) time.
- Compute the height of the tree by traversing down the leftmost nodes.
- Use binary search on the last level (which is indexed) to find the total number of nodes.