Saved Bookmarks
| 1. |
What is a B-tree data structure? What are the applications for B-trees? |
|
Answer» The B Tree is a type of m-way tree that is commonly used for disc access. A B-Tree with order m can only have m-1 keys and m children. One of the primary reasons for using a B tree is its ability to store a large number of keys in a single node as well as large key values while keeping the tree's height relatively small. A B-tree of order 4 is shown below in the image: Following are the key properties of a B-tree data structure:
Following are real-time applications of a B-Tree data structure:
|
|