B+Trees

From

Revision as of 15:34, 29 March 2009 by Admin (Talk | contribs)
Jump to: navigation, search

The variation of a B-Tree that is most often implemented in the B+ Tree. In this tree, internal nodes store only keys and all the data is stored in the leaves. The keys are simply “sign posts” to direct a search to the proper leaf. In addition, nodes have sibling pointers, so that the nodes at each level form a linked list.

While B-Trees have many uses, a common use is to implement the directory structure of an operating system’s file system using B-Trees. The key idea is that one node of the tree is the same size as a disk block.

Personal tools
MediaWiki Appliance - Powered by TurnKey Linux