What is the name of the binary tree (or the family of the binary trees), that is balanced, and has the minimum number of nodes possible for its height?
Well this is special kind of tree not the AVL tree.
What is the name of the binary tree (or the family of the binary trees), that is balanced, and has the minimum number of nodes possible for its height?
Well this is special kind of tree not the AVL tree.
Red-black tree?
Any one from http://en.wikipedia.org/wiki/Self-balancing_binary_search_tree#Implementations?
if the binary tree is balanced then, it height is a function of its nodes (n). height = log2n. so a balanced tree don't have a range of heights.
The minimum number of nodes a completely balanced binary tree can have for height d is 2^(d-1)+1. As far as i know this type doesn't have a name.
The maximal number of nodes is 2^d. This is called a complete tree. All layers are completely full and each node has either 2 or zero childern(implied).
balanced tree does not have a ranged of height that's why I called it is a special tree but I have confused that weight balanced tree included in the balanced binary tree?
consider the minimum number of nodes possible for its height and I have mentioned this in my question and also it is a guaranteed balanced tree