InterviewSolution
Saved Bookmarks
| 1. |
Which of the following is a widely used form of the hash tree?(a) B+ – tree(b) T tree(c) Tiger tree hash(d) HtreeThe question is from Hash Tables in portion Hash Tables of Data Structures & Algorithms IThe question was posed to me in an internship interview. |
|
Answer» CORRECT option is (c) Tiger tree hash The explanation is: The general form the hash tree which is used widely is the Tiger tree hash. It USES a binary hash tree, USUALLY has a data block size of 1024 BYTES and uses the Tiger hash. |
|