What is the maximum number of nodes in a binary tree with a height of h?
h^2
2^(h+1) - 1
2^h - 1
2^h

Computer Science Exercises are loading ...