Can anybody give me proof how the number of nodes in strictly binary tree is 2n-1 where n is the number of leaf nodes??
|
|
Proof by induction. Base case is when you have one leaf. Suppose it is true for k leaves. Then you should proove for k+1. So you get the new node, his parent and his other leaf (by definition of strict binary tree). The rest leaves are k-1 and then you can use the induction hypothesis. So the actual number of nodes are 2*(k-1) + 3 = 2k+1 == 2*(k+1)-1. |
||||
|
|
|
I'm guessing that what you really want is something like a proof that the depth is log2(N), where N is the number of nodes. In this case, the answer is fairly simple: for any given depth D, the number of nodes is 2D. Edit: in response to edited question: the same fact pretty much applies. Since the number of nodes at any depth is 2D, the number of nodes further up the tree is 2D-1 + 2D-2 + ...20 = 2D-1. Therefore, the total number of nodes in a balanced binary tree is 2D + 2D-1. If you set n = 2D, you've gone the full circle back to the original equation. |
|||||||||||
|
|
I think you are trying to work out a proof for: For this formula to hold you need to put a few restrictions on how the binary tree is constructed. Each node is either a leaf, which means it has no children, or it is an internal node. Internal nodes have 3 possible configurations:
All three configurations imply that an internal node connects to two other nodes. This explicitly rules out the situation where node connects to a single child as in:
Informal Proof Start with a minimal tree of 1 leaf: L = 1, N = 1 substitute into N = 2L - 1 and the see that the formula holds true (1 = 1, so far so good). Now add another minimal chunk to the tree. To do that you need to add another two nodes and tree looks like:
Notice that you must add nodes in pairs to satisfy the restriction stated earlier.
Adding a pair of nodes always adds
one leaf (two new leaf nodes, but you loose one as it becomes an internal node). Node growth
progresses as the series: 1, 3, 5, 7, 9... but leaf growth is: 1, 2, 3, 4, 5... That is why the formula
You might use mathematical induction to construct a formal proof, but this works find for me. |
|||
|
|
|
Proof by mathematical induction: The statement that there are (2n-1) of nodes in a strictly binary tree with n leaf nodes is true for n=1. { tree with only one node i.e root node } let us assume that the statement is true for tree with n-1 leaf nodes. Thus the tree has 2(n-1)-1 = 2n-3 nodes to form a tree with n leaf nodes we need to add 2 child nodes to any of the leaf nodes in the above tree. Thus the total number of nodes = 2n-3+2 = 2n-1. hence, proved |
|||
|
|
|
|||
|