0% found this document useful (0 votes)
261 views

Multiway Search Tree

A multiway tree, or m-way tree, allows nodes to have more than two children. An m-way search tree imposes an ordering on the keys in each node, with keys in ascending order and keys in the first i children smaller than the ith key. B-trees extend m-way search trees to allow for storage on secondary storage devices by ensuring nodes are at least half full and trees remain balanced during updates. B+-trees are similar but store data values only in leaves to keep related data physically clustered on disk for faster retrieval.

Uploaded by

abhiraj1234
Copyright
© © All Rights Reserved
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
261 views

Multiway Search Tree

A multiway tree, or m-way tree, allows nodes to have more than two children. An m-way search tree imposes an ordering on the keys in each node, with keys in ascending order and keys in the first i children smaller than the ith key. B-trees extend m-way search trees to allow for storage on secondary storage devices by ensuring nodes are at least half full and trees remain balanced during updates. B+-trees are similar but store data values only in leaves to keep related data physically clustered on disk for faster retrieval.

Uploaded by

abhiraj1234
Copyright
© © All Rights Reserved
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 16

Multiway Trees

A multiway tree is a tree that can have more than two children. A multiway tree of
order m (or an m-way tree) is one in which a tree can have m children.

As with the other trees that have been studied, the nodes in an m-way tree will be
made up of key fields, in this case m-1 key fields, and pointers to children.

multiway tree of order 5

To make the processing of m-way trees easier some type of order will be imposed on
the keys within each node, resulting in a multiway search tree of order m ( or an m-
way search tree). By definition an m-way search tree is a m-way tree in which:

 Each node has m children and m-1 key fields

 The keys in each node are in ascending order.

 The keys in the first i children are smaller than the ith key

 The keys in the last m-i children are larger than the ith key

4-way search tree


M-way search trees give the same advantages to m-way trees that binary search trees
gave to binary trees - they provide fast information retrieval and update. However,
they also have the same problems that binary search trees had - they can become
unbalanced, which means that the construction of the tree becomes of vital
importance.

B-Trees

An extension of a multiway search tree of order m is a B-tree of order m. This type


of tree will be used when the data to be accessed/stored is located on secondary
storage devices because they allow for large amounts of data to be stored in a node.

A B-tree of order m is a multiway search tree in which:

1. The root has at least two subtrees unless it is the only node in the tree.

2. Each nonroot and each nonleaf node have at most m nonempty children and at
least m/2 nonempty children.

3. The number of keys in each nonroot and each nonleaf node is one less than the
number of its nonempty children.

4. All leaves are on the same level.


These restrictions make B-trees always at least half full, have few levels, and remain
perfectly balanced.

The nodes in a B-tree are usually implemented as a class that contains an array of m-l
cells for keys, an array of m pointers to other nodes, and whatever other information is
required in order to facilitate tree maintenance.

template <class T, int M>


class BTreeNode
{
public:
BTreeNode();
BTreeNode( const T & );

private:
T keys[M-1];
BTreeNode *pointers[M];
...
};

Searching a B-tree

An algorithm for finding a key in B-tree is simple. Start at the root and determine
which pointer to follow based on a comparison between the search value and key
fields in the root node. Follow the appropriate pointer to a child node. Examine the
key fields in the child node and continue to follow the appropriate pointers until the
search value is found or a leaf node is reached that doesn't contain the desired search
value.

Insertion into a B-tree

The condition that all leaves must be on the same level forces a characteristic behavior
of B-trees, namely that B-trees are not allowed to grow at the their leaves; instead they
are forced to grow at the root.

When inserting into a B-tree, a value is inserted directly into a leaf. This leads to three
common situations that can occur:

1. A key is placed into a leaf that still has room.

2. The leaf in which a key is to be placed is full.

3. The root of the B-tree is full.

Case 1: A key is placed into a leaf that still has room


This is the easiest of the cases to solve because the value is simply inserted into the
correct sorted position in the leaf node.

Inserting the number 7 results in:

Case 2: The leaf in which a key is to be placed is full

In this case, the leaf node where the value should be inserted is split in two, resulting
in a new leaf node. Half of the keys will be moved from the full leaf to the new leaf.
The new leaf is then incorporated into the B-tree.

The new leaf is incorporated by moving the middle value to the parent and a pointer to
the new leaf is also added to the parent. This process is continues up the tree until all
of the values have "found" a location.

Insert 6 into the following B-tree:

results in a split of the first leaf node:


The new node needs to be incorporated into the tree - this is accomplished by taking
the middle value and inserting it in the parent:

Case 3: The root of the B-tree is full

The upward movement of values from case 2 means that it's possible that a value
could move up to the root of the B-tree. If the root is full, the same basic process from
case 2 will be applied and a new root will be created. This type of split results in 2
new nodes being added to the B-tree.

Inserting 13 into the following tree:

Results in:
The 15 needs to be moved to the root node but it is full. This means that the root needs
to be divided:

The 15 is inserted into the parent, which means that it becomes the new root node:

Deleting from a B-tree

As usual, this is the hardest of the processes to apply. The deletion process will
basically be a reversal of the insertion process - rather than splitting nodes, it's
possible that nodes will be merged so that B-tree properties, namely the requirement
that a node must be at least half full, can be maintained.

There are two main cases to be considered:

1. Deletion from a leaf

2. Deletion from a non-leaf


Case 1: Deletion from a leaf

1a) If the leaf is at least half full after deleting the desired value, the remaining larger
values are moved to "fill the gap".

Deleting 6 from the following tree:

results in:

1b) If the leaf is less than half full after deleting the desired value (known as
underflow), two things could happen:

Deleting 7 from the tree above results in:


1b-1) If there is a left or right sibling with the number of keys exceeding the minimum
requirement, all of the keys from the leaf and sibling will be redistributed between
them by moving the separator key from the parent to the leaf and moving the middle
key from the node and the sibling combined to the parent.

Now delete 8 from the tree:


1b-2) If the number of keys in the sibling does not exceed the minimum requirement,
then the leaf and sibling are merged by putting the keys from the leaf, the sibling, and
the separator from the parent into the leaf. The sibling node is discarded and the keys
in the parent are moved to "fill the gap". It's possible that this will cause the parent to
underflow. If that is the case, treat the parent as a leaf and continue repeating step 1b-2
until the minimum requirement is met or the root of the tree is reached.

Special Case for 1b-2: When merging nodes, if the parent is the root with only one
key, the keys from the node, the sibling, and the only key of the root are placed into a
node and this will become the new root for the B-tree. Both the sibling and the old
root will be discarded.
Case 2: Deletion from a non-leaf

This case can lead to problems with tree reorganization but it will be solved in a
manner similar to deletion from a binary search tree.

The key to be deleted will be replaced by its immediate predecessor (or successor) and
then the predecessor (or successor) will be deleted since it can only be found in a leaf
node.

Deleting 16 from the tree above results in:

The "gap" is filled in with the immediate predecessor:

and then the immediate predecessor is deleted:

If the immediate successor had been chosen as the replacement:


Deleting the successor results in:

The vales in the left sibling are combined with the separator key (18) and the
remaining values. They are divided between the 2 nodes:

and then the middle value is moved to the parent:


What is a B+-tree?

Most queries can be executed more quickly if the values are stored in order. But it's
not practical to hope to store all the rows in the table one after another, in sorted order,
because this requires rewriting the entire table with each insertion or deletion of a row.

This leads us to instead imagine storing our rows in a tree structure. Our first instinct
would be a balanced binary search tree like a red-black tree, but this really doesn't
make much sense for a database since it is stored on disk. You see, disks work by
reading and writing whole blocks of data at once — typically 512 bytes or four
kilobytes. A node of a binary search tree uses a small fraction of that, so it makes
sense to look for a structure that fits more neatly into a disk block.

Hence the B+-tree, in which each node stores up to d references to children and up
to d − 1 keys. Each reference is considered “between” two of the node's keys; it
references the root of a subtree for which all values are between these two keys.

Here is a fairly small tree using 4 as our value for d.

A B+-tree requires that each leaf be the same distance from the root, as in this picture,
where searching for any of the 11 values (all listed on the bottom level) will involve
loading three nodes from the disk (the root block, a second-level block, and a leaf).

In practice, d will be larger — as large, in fact, as it takes to fill a disk block. Suppose
a block is 4KB, our keys are 4-byte integers, and each reference is a 6-byte file offset.
Then we'd choose d to be the largest value so that 4 (d − 1) + 6 d ≤ 4096; solving this
inequality for d, we end up with d ≤ 410, so we'd use 410 for d. As you can see, d can
be large.

A B+-tree maintains the following invariants:

 Every node has one more references than it has keys.

 All leaves are at the same distance from the root.


 For every non-leaf node N with k being the number of keys in N: all keys in the
first child's subtree are less than N's first key; and all keys in the ith child's
subtree (2 ≤ i ≤ k) are between the (i − 1)th key of n and the ith key of n.

 The root has at least two children.

 Every non-leaf, non-root node has at least floor(d / 2) children.

 Each leaf contains at least floor(d / 2) keys.

 Every key from the table appears in a leaf, in left-to-right sorted order.

In our examples, we'll continue to use 4 for d. Looking at our invariants, this requires
that each leaf have at least two keys, and each internal node to have at least two
children (and thus at least one key).

2. Insertion algorithm

Descend to the leaf where the key fits.

1. If the node has an empty space, insert the key/reference pair into the node.

2. If the node is already full, split it into two nodes, distributing the keys evenly
between the two nodes. If the node is a leaf, take a copy of the minimum value
in the second of these two nodes and repeat this insertion algorithm to insert it
into the parent node. If the node is a non-leaf, exclude the middle value during
the split and repeat this insertion algorithm to insert this excluded value into the
parent node.

Initial:

Insert 20:
Insert 13:

Insert 15:

Insert 10:

Insert 11:

Insert 12:

3. Deletion algorithm

Descend to the leaf where the key exists.


1. Remove the required key and associated reference from the node.

2. If the node still has enough keys and references to satisfy the invariants, stop.

3. If the node has too few keys to satisfy the invariants, but its next oldest or next
youngest sibling at the same level has more than necessary, distribute the keys
between this node and the neighbor. Repair the keys in the level above to
represent that these nodes now have a different “split point” between them; this
involves simply changing a key in the levels above, without deletion or
insertion.

4. If the node has too few keys to satisfy the invariant, and the next oldest or next
youngest sibling is at the minimum for the invariant, then merge the node with
its sibling; if the node is a non-leaf, we will need to incorporate the “split key”
from the parent into our merging. In either case, we will need to repeat the
removal algorithm on the parent node to remove the “split key” that previously
separated these merged nodes — unless the parent is the root and we are
removing the final key from the root, in which case the merged node becomes
the new root (and the tree has become one level shorter than before).

Initial:

Delete 13:
Delete 15:

Delete 1:

You might also like