222. Count Complete Tree NodesEasy
Given the
rootof a complete binary tree, return the number of the nodes in the tree.According to Wikipedia, every level, except possibly the last, is completely filled in a complete binary tree, and all nodes in the last level are as far left as possible. It can have between
1and2hnodes inclusive at the last levelh.Design an algorithm that runs in less than
O(n)time complexity.
- Problem
- Solutions