What is Merkle Trees?

Shantanu Sharma
10/19/2020,
Shantanu Sharma  replied:

In 1979, Ralph Merkle patented the concept of hash trees. It is a data structure that allows efficient mapping of large chunks of data in the form of a connected tree / linked list.

Consider it to be like an organization structure for data points. In such a linked set of hashed data structure, any small changes made to the data can be easily identified or spotted.

Cryptos are the best example of the use of Merkle trees.  

The best resources for understanding Merkle trees can be found here: 

- https://www.geeksforgeeks.org/introduction-to-merkle-tree

- https://en.wikipedia.org/wiki/Merkle_tree 

- https://www.codementor.io/blog/merkle-trees-5h9arzd3n8 

1   
Shantanu Sharma
10/19/2020,
Shantanu Sharma  replied:

In 1979, Ralph Merkle patented the concept of hash trees. It is a data structure that allows efficient mapping of large chunks of data in the form of a connected tree / linked list.

Consider it to be like an organization structure for data points. In such a linked set of hashed data structure, any small changes made to the data can be easily identified or spotted.

Cryptos are the best example of the use of Merkle trees.  

The best resources for understanding Merkle trees can be found here: 

- https://www.geeksforgeeks.org/introduction-to-merkle-tree

- https://en.wikipedia.org/wiki/Merkle_tree 

- https://www.codementor.io/blog/merkle-trees-5h9arzd3n8 

1   
11/9/2020,
Anonymous  replied:
This is helpful. Do all blockchains utilize Merkle Trees?
1   
Shantanu Sharma
11/9/2020,
Shantanu Sharma  replied:

Yes. Most blockchains use Merkle trees! 

0