Skip to main content
Engineering LibreTexts

14.3: Discussion and Exercises

  • Page ID
    8497
  • \( \newcommand{\vecs}[1]{\overset { \scriptstyle \rightharpoonup} {\mathbf{#1}} } \) \( \newcommand{\vecd}[1]{\overset{-\!-\!\rightharpoonup}{\vphantom{a}\smash {#1}}} \)\(\newcommand{\id}{\mathrm{id}}\) \( \newcommand{\Span}{\mathrm{span}}\) \( \newcommand{\kernel}{\mathrm{null}\,}\) \( \newcommand{\range}{\mathrm{range}\,}\) \( \newcommand{\RealPart}{\mathrm{Re}}\) \( \newcommand{\ImaginaryPart}{\mathrm{Im}}\) \( \newcommand{\Argument}{\mathrm{Arg}}\) \( \newcommand{\norm}[1]{\| #1 \|}\) \( \newcommand{\inner}[2]{\langle #1, #2 \rangle}\) \( \newcommand{\Span}{\mathrm{span}}\) \(\newcommand{\id}{\mathrm{id}}\) \( \newcommand{\Span}{\mathrm{span}}\) \( \newcommand{\kernel}{\mathrm{null}\,}\) \( \newcommand{\range}{\mathrm{range}\,}\) \( \newcommand{\RealPart}{\mathrm{Re}}\) \( \newcommand{\ImaginaryPart}{\mathrm{Im}}\) \( \newcommand{\Argument}{\mathrm{Arg}}\) \( \newcommand{\norm}[1]{\| #1 \|}\) \( \newcommand{\inner}[2]{\langle #1, #2 \rangle}\) \( \newcommand{\Span}{\mathrm{span}}\)\(\newcommand{\AA}{\unicode[.8,0]{x212B}}\)

    The external memory model of computation was introduced by Aggarwal and Vitter [4]. It is sometimes also called the I/O model or the disk access model.

    \(B\)-Trees are to external memory searching what binary search trees are to internal memory searching. \(B\)-trees were introduced by Bayer and McCreight [9] in 1970 and, less than ten years later, the title of Comer's ACM Computing Surveys article referred to them as ubiquitous [15].

    Like binary search trees, there are many variants of \(B\)-Trees, including \(B^+\)-trees, \(B^*\)-trees, and counted \(B\)-trees. \(B\)-trees are indeed ubiquitous and are the primary data structure in many file systems, including Apple's HFS+, Microsoft's NTFS, and Linux's Ext4; every major database system; and key-value stores used in cloud computing. Graefe's recent survey [36] provides a 200+ page overview of the many modern applications, variants, and optimizations of \(B\)-trees.

    \(B\)-trees implement the SSet interface. If only the USet interface is needed, then external memory hashing could be used as an alternative to \(B\)-trees. External memory hashing schemes do exist; see, for example, Jensen and Pagh [43]. These schemes implement the USet operations in \(O(1)\) expected time in the external memory model. However, for a variety of reasons, many applications still use \(B\)-trees even though they only require USet operations.

    One reason \(B\)-trees are such a popular choice is that they often perform better than their \(O(\log_B \mathtt{n})\) running time bounds suggest. The reason for this is that, in external memory settings, the value of \(B\) is typically quite large--in the hundreds or even thousands. This means that 99% or even 99.9% of the data in a \(B\)-tree is stored in the leaves. In a database system with a large memory, it may be possible to cache all the internal nodes of a \(B\)-tree in RAM, since they only represent 1% or 0.1% of the total data set. When this happens, this means that a search in a \(B\)-tree involves a very fast search in RAM, through the internal nodes, followed by a single external memory access to retrieve a leaf.

    Exercise \(\PageIndex{1}\)

    Show what happens when the keys 1.5 and then 7.5 are added to the \(B\)-tree in Figure 14.2.1.

    Exercise \(\PageIndex{2}\)

    Show what happens when the keys 3 and then 4 are removed from the \(B\)-tree in Figure 14.2.1.

    Exercise \(\PageIndex{3}\)

    What is the maximum number of internal nodes in a \(B\)-tree that stores \(\mathtt{n}\) keys (as a function of \(\mathtt{n}\) and \(B\))?

    Exercise \(\PageIndex{4}\)

    The introduction to this chapter claims that \(B\)-trees only need an internal memory of size \(O(B+\log_B\mathtt{n})\). However, the implementation given here actually requires more memory.

    1. Show that the implementation of the \(\mathtt{add(x)}\) and \(\mathtt{remove(x)}\) methods given in this chapter use an internal memory proportional to \(B\log_B \mathtt{n}\).
    2. Describe how these methods could be modified in order to reduce their memory consumption to \(O(B + \log_B \mathtt{n})\).

    Exercise \(\PageIndex{5}\)

    Draw the credits used in the proof of Lemma 14.2.1 on the trees in Figures 14.2.5 and 14.2.6. Verify that (with three additional credits) it is possible to pay for the splits, merges, and borrows and maintain the credit invariant.

    Exercise \(\PageIndex{6}\)

    Design a modified version of a \(B\)-tree in which nodes can have anywhere from \(B\) up to \(3B\) children (and hence \(B-1\) up to \(3B-1\) keys). Show that this new version of \(B\)-trees performs only \(O(m/B)\) splits, merges, and borrows during a sequence of \(m\) operations. (Hint: For this to work, you will have to be more agressive with merging, sometimes merging two nodes before it is strictly necessary.)

    Exercise \(\PageIndex{7}\)

    In this exercise, you will design a modified method of splitting and merging in \(B\)-trees that asymptotically reduces the number of splits, borrows and merges by considering up to three nodes at a time.

    1. Let \(\mathtt{u}\) be an overfull node and let \(\mathtt{v}\) be a sibling immediately to the right of \(\mathtt{u}\). There are two ways to fix the overflow at \(\mathtt{u}\):
      1. \(\mathtt{u}\) can give some of its keys to \(\mathtt{v}\); or
      2. \(\mathtt{u}\) can be split and the keys of \(\mathtt{u}\) and \(\mathtt{v}\) can be evenly distributed among \(\mathtt{u}\), \(\mathtt{v}\), and the newly created node, \(\mathtt{w}\).
      Show that this can always be done in such a way that, after the operation, each of the (at most 3) affected nodes has at least \(B+\alpha B\) keys and at most \(2B-\alpha B\) keys, for some constant \(\alpha > 0\).
    2. Let \(\mathtt{u}\) be an underfull node and let \(\mathtt{v}\) and \(\mathtt{w}\) be siblings of \(\mathtt{u}\) There are two ways to fix the underflow at \(\mathtt{u}\):
      1. keys can be redistributed among \(\mathtt{u}\), \(\mathtt{v}\), and \(\mathtt{w}\); or
      2. \(\mathtt{u}\), \(\mathtt{v}\), and \(\mathtt{w}\) can be merged into two nodes and the keys of \(\mathtt{u}\), \(\mathtt{v}\), and \(\mathtt{w}\) can be redistributed amongst these nodes.
      Show that this can always be done in such a way that, after the operation, each of the (at most 3) affected nodes has at least \(B+\alpha B\) keys and at most \(2B-\alpha B\) keys, for some constant \(\alpha > 0\).
    3. Show that, with these modifications, the number of merges, borrows, and splits that occur during \(m\) operations is \(O(m/B)\).

    Exercise \(\PageIndex{8}\)

    A \(B^+\)-tree, illustrated in Figure \(\PageIndex{1}\) stores every key in a leaf and keeps its leaves stored as a doubly-linked list. As usual, each leaf stores between \(B-1\) and \(2B-1\) keys. Above this list is a standard \(B\)-tree that stores the largest value from each leaf but the last.

    1. Describe fast implementations of \(\mathtt{add(x)}\), \(\mathtt{remove(x)}\), and \(\mathtt{find(x)}\) in a \(B^+\)-tree.
    2. Explain how to efficiently implement the \(\mathtt{findRange(x,y)}\) method, that reports all values greater than \(\mathtt{x}\) and less than or equal to \(\mathtt{y}\), in a \(B^+\)-tree.
    3. Implement a class, BPlusTree, that implements \(\mathtt{find(x)}\), \(\mathtt{add(x)}\), \(\mathtt{remove(x)}\), and \(\mathtt{findRange(x,y)}\).
    4. \(B^+\)-trees duplicate some of the keys because they are stored both in the \(B\)-tree and in the list. Explain why this duplication does not add up to much for large values of \(B\).
    bplustree.PNG
    Figure \(\PageIndex{1}\): A \(B^+\)-tree is a \(B\)-tree on top of a doubly-linked list of blocks.

    This page titled 14.3: Discussion and Exercises is shared under a CC BY license and was authored, remixed, and/or curated by Pat Morin (Athabasca University Press) .

    • Was this article helpful?