Module4 B Trees
Module4 B Trees
B tree is a special type of self-balancing search tree in which each node can contain more
than one key and can have more than two children. It is a generalized form of the binary
search tree.
It is also known as a height-balanced m-way tree.
B tree can store many keys in a single node and can have multiple child nodes. This
decreases the height significantly allowing faster disk accesses.
Delete the node 53 from the B Tree of order 5 shown in the following figure.
Now, 57 is the only element which is left in the node, the minimum number of
elements that must be present in a B tree of order 5, is 2. it is less than that, the
elements in its left and right sub-tree are also not sufficient therefore, merge it with
the left sibling and intervening element of parent i.e. 49.