What is the name of this Balanced Binary Tree?

Posted by Moody on Stack Overflow See other posts from Stack Overflow or by Moody
Published on 2010-01-19T19:11:28Z Indexed on 2010/03/08 6:06 UTC
Read the original article Hit count: 118

Filed under:

BBTHMNN(h) = Balanced Binary Tree Have Minimum Number Of Nodes

BBTHMNN(h) = BBTHMNN(h-1) + BBTHMNN(h-2) + 1

Name of the balanced binary tree which satisfying the above formula. I have searched all over the internet but I couldn't found the name of the tree

© Stack Overflow or respective owner

Related posts about homework