Bitcoin Forum
April 25, 2024, 08:55:37 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: [1]
  Print  
Author Topic: Merkle Trees - How many leaf nodes in a tree with N total nodes?  (Read 2638 times)
CasualSam (OP)
Member
**
Offline Offline

Activity: 85
Merit: 11


View Profile
January 07, 2014, 09:16:43 AM
 #1

How many leaf nodes are there in a Merkle tree that has N total nodes?

Can anyone help me out with this? Assume the Merkle tree is implemented just as it is for Bitcoin transactions.

Any help greatly appreciated  Smiley
1714078537
Hero Member
*
Offline Offline

Posts: 1714078537

View Profile Personal Message (Offline)

Ignore
1714078537
Reply with quote  #2

1714078537
Report to moderator
1714078537
Hero Member
*
Offline Offline

Posts: 1714078537

View Profile Personal Message (Offline)

Ignore
1714078537
Reply with quote  #2

1714078537
Report to moderator
1714078537
Hero Member
*
Offline Offline

Posts: 1714078537

View Profile Personal Message (Offline)

Ignore
1714078537
Reply with quote  #2

1714078537
Report to moderator
The Bitcoin network protocol was designed to be extremely flexible. It can be used to create timed transactions, escrow transactions, multi-signature transactions, etc. The current features of the client only hint at what will be possible in the future.
Advertised sites are not endorsed by the Bitcoin Forum. They may be unsafe, untrustworthy, or illegal in your jurisdiction.
CasualSam (OP)
Member
**
Offline Offline

Activity: 85
Merit: 11


View Profile
January 07, 2014, 09:31:23 AM
 #2

Examples:

       6
  4       5
1   2   3  {3}

Total nodes = 6
Leaf nodes = 3



       7
  5       6
1   2   3   4

Total nodes = 7
Leaf nodes = 4


             11
      9                10
  6       7         8      {8}
1   2   3   4   5  {5}

Total nodes = 11
Leaf nodes = 5



              15
      13              14
  9       10      11      12
1   2   3   4   5   6   7   8

Total nodes = 15
Leaf nodes = 8
CasualSam (OP)
Member
**
Offline Offline

Activity: 85
Merit: 11


View Profile
January 07, 2014, 10:11:17 AM
 #3

If the tree is complete (IE. 1/2/4/8/16/... leaf nodes) then the formula is:

Leaf Count = (N + 1) / 2



CasualSam (OP)
Member
**
Offline Offline

Activity: 85
Merit: 11


View Profile
January 07, 2014, 12:56:40 PM
 #4

I'm sure there is an elegant way to do this but I've wasted too much time and I can manage in code (messy). Just in case anyone is up for the challenge, here is some extra data:

Leaf Nodes,Total Nodes
1,1
2,3
3,6
4,7
5,11
6,12
7,14
8,15
9,20
10,21
11,23
12,24
13,27
14,28
15,30
16,31
17,37
18,38
19,40
20,41
21,44
22,45
23,47
24,48
25,52
26,53
27,55
28,56
29,59
30,60
31,62
32,63
33,70
...
63,126
64,127
65,135
66,136
67,138
CasualSam (OP)
Member
**
Offline Offline

Activity: 85
Merit: 11


View Profile
January 07, 2014, 04:57:18 PM
 #5

Getting closer. This gets the total node count from the leaf count (opposite of what I'm trying to do)

Code:
int GetNodeCount(int leafCount) {
    int nodeCount = 1;
    for (int i = leafCount; i > 1; i = (i + 1) >> 1)
        nodeCount += i;
    return nodeCount;
}
Altoidnerd
Sr. Member
****
Offline Offline

Activity: 406
Merit: 251


http://altoidnerd.com


View Profile WWW
January 09, 2014, 05:57:21 AM
 #6

I'm sure there is an elegant way to do this but I've wasted too much time and I can manage in code (messy). Just in case anyone is up for the challenge, here is some extra data:

Leaf Nodes,Total Nodes
1,1
2,3
3,6
4,7
5,11
6,12
7,14
8,15
9,20
10,21
11,23
12,24
13,27
14,28
15,30
16,31
17,37
18,38
19,40
20,41
21,44
22,45
23,47
24,48
25,52
26,53
27,55
28,56
29,59
30,60
31,62
32,63
33,70
...
63,126
64,127
65,135
66,136
67,138


Is this a bijection? Equivalently is there only one way to draw a tree with k total nodes?

Do you even mine?
http://altoidnerd.com 
12gKRdrz7yy7erg5apUvSRGemypTUvBRuJ
CasualSam (OP)
Member
**
Offline Offline

Activity: 85
Merit: 11


View Profile
September 27, 2014, 12:03:49 PM
 #7

AKAIK this is basically 1-to-1 (aka a bijection). I've solved all these problems and I'll be publishing an article soon on merkle trees including the binary merkle trie used in cryptonite.
hhanh00
Sr. Member
****
Offline Offline

Activity: 467
Merit: 266


View Profile
September 28, 2014, 10:25:17 AM
 #8

Are you looking for an exact number? If an approximation is ok, it's simply half. We can prove it like this:

A merkle tree is a binary tree which is essentially a direct elimination tournament. When two hashes are combined, one hash is produced.
So if you start with N leaves and keep on combining nodes, every time you reduce the number by 1. To get to a single node, therefore we have
to do N-1 combinations and the total of nodes is then roughly 2N. This is true, regardless where you combine nodes in the tree.
However, the merke tree also adds nodes when there is an odd number of nodes in a given level. You have at most log_2(N) extra nodes added, i.e.
one per level of your tree. So the number is between 2N and 2N + log2(N). As N grows, the term is log is negligeable.
I'll try to find an exact formula.


   

Meni Rosenfeld
Donator
Legendary
*
expert
Offline Offline

Activity: 2058
Merit: 1054



View Profile WWW
September 28, 2014, 10:54:14 AM
 #9

If I'm not mistaken, to find the total number of nodes N from the leaf nodes M, you have
N = 2M + number of non-trailing 0's in M's binary representation.

With the only exception is M being a power of 2, in which case N = 2M-1.

For example, if M = 66, the binary expansion is 1000010. It has 1 trailing zero and 4 non-trailing 0's, so you have N = 2M+4 = 136.

To do the reverse, you could just start with N/2 and count downwards (unless a power of 2).

1EofoZNBhWQ3kxfKnvWkhtMns4AivZArhr   |   Who am I?   |   bitcoin-otc WoT
Bitcoil - Exchange bitcoins for ILS (thread)   |   Israel Bitcoin community homepage (thread)
Analysis of Bitcoin Pooled Mining Reward Systems (thread, summary)  |   PureMining - Infinite-term, deterministic mining bond
CasualSam (OP)
Member
**
Offline Offline

Activity: 85
Merit: 11


View Profile
October 02, 2014, 11:23:59 AM
Last edit: October 02, 2014, 01:17:15 PM by CasualSam
 #10

If I'm not mistaken, to find the total number of nodes N from the leaf nodes M, you have
N = 2M + number of non-trailing 0's in M's binary representation.

With the only exception is M being a power of 2, in which case N = 2M-1.

For example, if M = 66, the binary expansion is 1000010. It has 1 trailing zero and 4 non-trailing 0's, so you have N = 2M+4 = 136.

To do the reverse, you could just start with N/2 and count downwards (unless a power of 2).

This is very cool Thanks. I'm still thinking about it could you explain a bit more about the count downwards? I mean we know N, so starting with N/2 we keep subtracting 1 from N until what?
N = 2M + NNTZ (num non-trailing zeroes)
M = (N - NNTZ)/2
Just not getting it sorry.

I was working it out in a much more complicated way using what I call the waltz series (wolframalpha link) The graph basically represents a binary tree. If you squash the graph from the top downwards it is an efficient way of storing the nodes linearly for a read/write structure. And then to get the linear waltz index of any node:

C#
Code:
public static ulong ToWaltzIndex(int level, ulong offset)
{
    return (offset * (1u << (level + 1))) + (1u << level) - 1;
}

And to get the leaf count:

Code:
/// <summary>
///     We know that:
///     * All positive integers are valid leafCounts
///     * Only certain values are valid nodeCounts.
///     * There is a 1:1 mapping between leafCount:nodeCount
///     * When listed in order, the differences between the valid nodeCount values follows the waltz series
///     * When the tree is complete (aka symetric) then: leafCount = (nodeCount + 1) / 2
///     Therefore:
///     * The difference between any nodeCount and the nodeCount of a complete tree with the same height
///     must be the sum of K elements of the waltz series.
///     * nodeDiff = sum(waltz[0],...,waltz[K-1])
///     * X = GetWaltzSumCount(nodeDiff)
///     * leafCount = maxLeafCount - X
/// </summary>
public static ulong GetLeafCount(ulong nodeCount)
{
//max possible leaf count at the current height
ulong maxLeafCount = Pow2Prev(nodeCount);

//max possible total node count at the current height
ulong maxNodeCount = (maxLeafCount * 2) - 1;

//Get the difference between the current node count and the max node count
ulong nodeDiff = maxNodeCount - nodeCount;

//if numNodes equals maxNodes then leafCount must equal maxLeafCount
if (nodeDiff == 0)
return maxLeafCount;

//Subtract the number of summed waltz elements (steps) that are required to equal nodeDiff, from maxLeafCount
return maxLeafCount - GetWaltzSumCount(nodeDiff);
}

And for completeness. the supporting functions (GetWaltzSumCount):
Code:
///     Returns the number of elements that need to be added in order to reach the target value. 
/// </summary>
/// <param name="target">The target result to emulate</param>
/// <returns>The number of consecutive elements that need to be added together before reaching the target</returns>
public static ulong GetWaltzSumCount(ulong target)
{
ulong counter = 0;
ulong sum = 0;

while (sum < target)
sum += GetWaltzValue(++counter) + 1;

if (sum > target)
counter--;

return counter;
}

/// <summary>
///     A waltz value is the amount of times a number can be halved without leaving a remainder. These
///     values (series) are useful for navigating and storing binary tree structures.
/// </summary>
/// <param name="number">A positive int greater than 0</param>
public static uint GetWaltzValue(ulong number)
{
//Covers all unsigned 64bit values
const uint maxDivisions = 64;

ulong num = number;

for (uint i = 0; i <= maxDivisions; i++)
{
if ((num % 2) == 1)
return i;

num = num / 2;
}

throw new IndexOutOfRangeException("Could not find Waltz value for number: " + number);
}

Meni Rosenfeld
Donator
Legendary
*
expert
Offline Offline

Activity: 2058
Merit: 1054



View Profile WWW
October 02, 2014, 12:56:29 PM
 #11

What I meant with counting downwards:

Let's say N=135. You start with 135/2 = 67. You first try M=67, using the method you get N=138 which is wrong. Then you try M=66, giving N=136. Then you try M=65, this gives N=135 so it is the correct result.

To clarify, I'm not sure my method works, if you post more values using your implementation, I can test out mine.

1EofoZNBhWQ3kxfKnvWkhtMns4AivZArhr   |   Who am I?   |   bitcoin-otc WoT
Bitcoil - Exchange bitcoins for ILS (thread)   |   Israel Bitcoin community homepage (thread)
Analysis of Bitcoin Pooled Mining Reward Systems (thread, summary)  |   PureMining - Infinite-term, deterministic mining bond
CasualSam (OP)
Member
**
Offline Offline

Activity: 85
Merit: 11


View Profile
October 02, 2014, 01:20:44 PM
Last edit: October 02, 2014, 01:36:11 PM by CasualSam
 #12

But M is unknown so how can you tell that N is correct?

I'm struggling to think tonight Smiley

Edit: Oh I see. I get it now Smiley That is a big simplification. I will check which is faster as I don't have to decrement as many times with my method. Your's is infinitely more explainable though (most likely faster too).

When (if) I finish my article I will credit you
Meni Rosenfeld
Donator
Legendary
*
expert
Offline Offline

Activity: 2058
Merit: 1054



View Profile WWW
October 02, 2014, 01:31:37 PM
 #13

But M is unknown so how can you tell that N is correct?

I'm struggling to think tonight Smiley

Edit: Oh I see. I get it now Smiley That is a big simplification. I will check which is faster as I don't have to decrement as many times with my method. Your's is infinitely more explainable though.

When (if) I finish my article I will credit you
Thanks Smiley But we still need to verify the NNTZ method works.

1EofoZNBhWQ3kxfKnvWkhtMns4AivZArhr   |   Who am I?   |   bitcoin-otc WoT
Bitcoil - Exchange bitcoins for ILS (thread)   |   Israel Bitcoin community homepage (thread)
Analysis of Bitcoin Pooled Mining Reward Systems (thread, summary)  |   PureMining - Infinite-term, deterministic mining bond
CasualSam (OP)
Member
**
Offline Offline

Activity: 85
Merit: 11


View Profile
October 02, 2014, 01:45:11 PM
 #14

It is fairly straight forward to calculate N from M so (bitcoin does this) so it shouldn't be a problem.

Bitcoin method (approx):

Code:
int GetNodeCount(int leafCount) {
    int nodeCount = 1;
    for (int i = leafCount; i > 1; i = (i + 1) >> 1)
        nodeCount += i;
    return nodeCount;
}
hhanh00
Sr. Member
****
Offline Offline

Activity: 467
Merit: 266


View Profile
October 02, 2014, 02:19:02 PM
 #15

If the number of leaves is a power of 2, the total number of nodes is 2n - 1.
If it's not, there are extra nodes introduced to fill in the holes. Let m be the number of these extra nodes. The total number of nodes become 2n -1+m.
When n is written in binary form, a division by two is equivalent to a bit shift to the right. As long as the last digit is a 0, the number is even.
Therefore all the trailing zeros are levels that are even and don't introduce new nodes.
When we reach a 1, a extra node is added. It is carried to the next level. Ex: 101. Without extra nodes, we have 1 at the root. 10 on the second level and 101 on the third. but the extra node made the 3rd level 110. And the second level is now 11. It's odd again, so an extra node is once again added. And it becomes 100.
 We can see that the process of adding nodes continues for every 0 that appears after the first 1. Because the carry made the number odd.
When we reach a 1. The carry turns that into a 0 and carry a 1 further. Therefore the 1 has no effect of the number of extra nodes.
In conclusion, the number of extra nodes is 1 + the number of zeros that are to the left of the first 1 that is not the most significant bit.
The final result is 2n + number of non trailing zeros.



Credits goes to Meni for the formula.



CasualSam (OP)
Member
**
Offline Offline

Activity: 85
Merit: 11


View Profile
October 02, 2014, 02:39:48 PM
 #16

If the number of leaves is a power of 2, the total number of nodes is 2n - 1.
If it's not, there are extra nodes introduced to fill in the holes. Let m be the number of these extra nodes. The total number of nodes become 2n -1+m.
When n is written in binary form, a division by two is equivalent to a bit shift to the right. As long as the last digit is a 0, the number is even.
Therefore all the trailing zeros are levels that are even and don't introduce new nodes.
When we reach a 1, a extra node is added. It is carried to the next level. Ex: 101. Without extra nodes, we have 1 at the root. 10 on the second level and 101 on the third. but the extra node made the 3rd level 110. And the second level is now 11. It's odd again, so an extra node is once again added. And it becomes 100.
 We can see that the process of adding nodes continues for every 0 that appears after the first 1. Because the carry made the number odd.
When we reach a 1. The carry turns that into a 0 and carry a 1 further. Therefore the 1 has no effect of the number of extra nodes.
In conclusion, the number of extra nodes is 1 + the number of zeros that are to the left of the first 1 that is not the most significant bit.
The final result is 2n + number of non trailing zeros.



Credits goes to Meni for the formula.




Thanks that is a great explanation of how it works. If you don't mind I'd like to use it (or a possibly edited version) in my article with credit to you. The article is about binary merkle trees in general including a method to store/retrieve them in insertion order as well as a balanced merkle trie design (credit catia/cryptonite). It will be published openly (if I hopefully get around to finishing it).
hhanh00
Sr. Member
****
Offline Offline

Activity: 467
Merit: 266


View Profile
October 02, 2014, 02:54:28 PM
 #17

Sure, no problem. Thanks

Crowex
Member
**
Offline Offline

Activity: 111
Merit: 10


View Profile
October 03, 2014, 04:09:27 PM
 #18

Examples:

       6
  4       5
1   2   3  {3}

Total nodes = 6
Leaf nodes = 3



       7
  5       6
1   2   3   4

Total nodes = 7
Leaf nodes = 4


             11
      9                10
  6       7         8      {8}
1   2   3   4   5  {5}

Total nodes = 11
Leaf nodes = 5



              15
      13              14
  9       10      11      12
1   2   3   4   5   6   7   8

Total nodes = 15
Leaf nodes = 8

Would it be possible to optimise the way that these trees are built?
It doesn't seem quite right hashing the final leaf nodes with themselves when you encounter odd numbers.

How about this:
 For each 1 in the binary representation of the number of elements in a set (number of leaf nodes) you build a complete merkle tree. (if there is an odd number then the final tree will just be a single element). Then hash the root of the smallest tree with the root of the second smallest. Hash the result of this with the root of the third smallest etc. until you reach the root of the largest tree and this is your block hash.

 As an example, to represent a set of 5 leaf nodes represented in binary by 101 I would build two trees (in fact the final i isn't a tree but just the single element)

 So it would look like this.

                         H1234.5
           H12.34
      H1.2       H3.4
   1       2     3       4             5

Only 4 hashes compared to 6 above.

 So for the number 7  (111) we build three trees (one is a single element)

                                H1234.567
        H12.34                               H56.7
     H1.2     H3.4           H5.6     
    1     2    3     4        5     6                     7
 One hash less.

 I haven't really examined this idea but at first glance it seems more efficient in number of hashes and in some cases more efficient for validation of the elements. However it also seems too simple so what is wrong with it? Smiley




 


 
Pages: [1]
  Print  
 
Jump to:  

Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!