B + -Trees. Motivation An AVL tree with N nodes is an excellent data structure for searching, indexing, etc. The Big-Oh analysis shows that most operations.

Slides:



Advertisements
Similar presentations
Chapter 4: Trees Part II - AVL Tree
Advertisements

Advanced Database Discussion B Trees. Motivation for B-Trees So far we have assumed that we can store an entire data structure in main memory What if.
B+-Trees (PART 1) What is a B+ tree? Why B+ trees? Searching a B+ tree
B-Trees. Motivation for B-Trees Index structures for large datasets cannot be stored in main memory Storing it on disk requires different approach to.
CPSC 231 B-Trees (D.H.)1 LEARNING OBJECTIVES Problems with simple indexing. Multilevel indexing: B-Tree. –B-Tree creation: insertion and deletion of nodes.
Other time considerations Source: Simon Garrett Modifications by Evan Korth.
B-Trees Disk Storage What is a multiway tree? What is a B-tree?
B-Trees Disk Storage What is a multiway tree? What is a B-tree?
©Silberschatz, Korth and Sudarshan12.1Database System Concepts Chapter 12: Part B Part A:  Index Definition in SQL  Ordered Indices  Index Sequential.
CS 206 Introduction to Computer Science II 12 / 01 / 2008 Instructor: Michael Eckmann.
B + -Trees (Part 1) Lecture 20 COMP171 Fall 2006.
1 B-Trees Disk Storage What is a multiway tree? What is a B-tree? Why B-trees? Comparing B-trees and AVL-trees Searching a B-tree Insertion in a B-tree.
1 Database indices Database Systems manage very large amounts of data. –Examples: student database for NWU Social Security database To facilitate queries,
B + -Trees (Part 1). Motivation AVL tree with N nodes is an excellent data structure for searching, indexing, etc. –The Big-Oh analysis shows most operations.
B + -Trees (Part 1) COMP171. Slide 2 Main and secondary memories  Secondary storage device is much, much slower than the main RAM  Pages and blocks.
CSE 326: Data Structures B-Trees Ben Lerner Summer 2007.
CS 206 Introduction to Computer Science II 11 / 24 / 2008 Instructor: Michael Eckmann.
B + -Trees (Part 2) Lecture 21 COMP171 Fall 2006.
B-Trees. CSM B-Trees 2 Motivation for B-Trees So far we have assumed that we can store an entire data structure in main memory What if we have so.
B-Trees and B+-Trees Disk Storage What is a multiway tree?
Balanced Trees. Binary Search tree with a balance condition Why? For every node in the tree, the height of its left and right subtrees must differ by.
B + -Trees COMP171 Fall AVL Trees / Slide 2 Dictionary for Secondary storage * The AVL tree is an excellent dictionary structure when the entire.
Tirgul 6 B-Trees – Another kind of balanced trees.
B + -Trees (Part 2) COMP171. Slide 2 Review: B+ Tree of order M and of leaf size L n The root is either a leaf or 2 to M children n Each (internal) node.
AVL Trees / Slide 1 Deletion  To delete a key target, we find it at a leaf x, and remove it. * Two situations to worry about: (1) target is a key in some.
Splay Trees and B-Trees
1 B-Trees Section AVL (Adelson-Velskii and Landis) Trees AVL tree is binary search tree with balance condition –To ensure depth of the tree is.
Indexing. Goals: Store large files Support multiple search keys Support efficient insert, delete, and range queries.
IntroductionIntroduction  Definition of B-trees  Properties  Specialization  Examples  2-3 trees  Insertion of B-tree  Remove items from B-tree.
B-Tree. B-Trees a specialized multi-way tree designed especially for use on disk In a B-tree each node may contain a large number of keys. The number.
ICS 220 – Data Structures and Algorithms Week 7 Dr. Ken Cosh.
More Trees Multiway Trees and 2-4 Trees. Motivation of Multi-way Trees Main memory vs. disk ◦ Assumptions so far: ◦ We have assumed that we can store.
1 B Trees - Motivation Recall our discussion on AVL-trees –The maximum height of an AVL-tree with n-nodes is log 2 (n) since the branching factor (degree,
CSE373: Data Structures & Algorithms Lecture 15: B-Trees Linda Shapiro Winter 2015.
Multi-way Trees. M-way trees So far we have discussed binary trees only. In this lecture, we go over another type of tree called m- way trees or trees.
B-Trees. CSM B-Trees 2 Motivation for B-Trees So far we have assumed that we can store an entire data structure in main memory What if we have so.
1 B-Trees & (a,b)-Trees CS 6310: Advanced Data Structures Western Michigan University Presented by: Lawrence Kalisz.
INTRODUCTION TO MULTIWAY TREES P INTRO - Binary Trees are useful for quick retrieval of items stored in the tree (using linked list) - often,
B-Trees And B+-Trees Jay Yim CS 157B Dr. Lee.
COSC 2007 Data Structures II Chapter 15 External Methods.
B-Trees. Motivation for B-Trees So far we have assumed that we can store an entire data structure in main memory What if we have so much data that it.
CMSC 341 B- Trees D. Frey with apologies to Tom Anastasio.
B-Trees. CSM B-Trees 2 Motivation for B-Trees So far we have assumed that we can store an entire data structure in main memory What if we have so.
Starting at Binary Trees
AVL-Trees (Part 1) COMP171. AVL Trees / Slide 2 * Data, a set of elements * Data structure, a structured set of elements, linear, tree, graph, … * Linear:
IKI 10100: Data Structures & Algorithms Ruli Manurung (acknowledgments to Denny & Ade Azurat) 1 Fasilkom UI Ruli Manurung (Fasilkom UI)IKI10100: Lecture17.
Lecture 11COMPSCI.220.FS.T Balancing an AVLTree Two mirror-symmetric pairs of cases to rebalance the tree if after the insertion of a new key to.
B+ Trees  What if you have A LOT of data that needs to be stored and accessed quickly  Won’t all fit in memory.  Means we have to access your hard.
1 Multi-Level Indexing and B-Trees. 2 Statement of the Problem When indexes grow too large they have to be stored on secondary storage. However, there.
B-TREE. Motivation for B-Trees So far we have assumed that we can store an entire data structure in main memory What if we have so much data that it won’t.
Internal and External Sorting External Searching
8/3/2007CMSC 341 BTrees1 CMSC 341 B- Trees D. Frey with apologies to Tom Anastasio.
COMP261 Lecture 23 B Trees.
Unit 9 Multi-Way Trees King Fahd University of Petroleum & Minerals
B-Trees B-Trees.
B/B+ Trees 4.7.
Multiway Search Trees Data may not fit into main memory
B-Trees B-Trees.
B+-Trees.
B+ Trees What are B+ Trees used for What is a B Tree What is a B+ Tree
B+-Trees.
B+-Trees.
(edited by Nadia Al-Ghreimil)
CMSC 341 Lecture 10 B-Trees Based on slides from Dr. Katherine Gibson.
B+ Trees What are B+ Trees used for What is a B Tree What is a B+ Tree
B- Trees D. Frey with apologies to Tom Anastasio
B+-Trees (Part 1).
COMP171 B+-Trees (Part 2).
(edited by Nadia Al-Ghreimil)
COMP171 B+-Trees (Part 2).
Presentation transcript:

B + -Trees

Motivation An AVL tree with N nodes is an excellent data structure for searching, indexing, etc. The Big-Oh analysis shows that most operations finish within O(log N) time The theoretical conclusion works as long as the entire structure can fit into the main memory When the size of the tree is too large to fit in main memory and has to reside on disk, the performance of AVL tree may deteriorate rapidly

From Binary to M-ary Idea: allow a node in a tree to have many children Less disk access = smaller tree height = more branching As branching increases, the depth decreases An M-ary tree allows M-way branching Each internal node has at most M children A complete M-ary tree has height that is roughly log M N instead of log 2 N If M = 20, then log < 5 Thus, we can speedup the search significantly Want all leaves to be at same level. Can do that by varying the branching factor.

M-ary Search Tree A binary search tree has one key to decide which of the two branches to take An M-ary search tree needs M–1 keys to decide which branch to take - “One more kid than key” An M-ary search tree should be balanced in some way too We don’t want an M-ary search tree to degenerate to a linked list, or even a binary search tree Thus, we require that each node is at least ½ full!

B + Tree A B + -tree of order M (M>3) is an M-ary tree with the following properties: 1. The data items are stored in leaves 2. The root is either a leaf or has between two and M children 3. The non-leaf nodes store up to M-1 keys to guide the searching; key i represents the smallest key in subtree i+1 4. All non-leaf nodes (except the root) have between  M/2  and M children 5. All leaves are at the same depth and have between  L/2  and L data items, for some L (usually L << M, but we will assume M=L in most examples)

Keys in Internal Nodes Which keys are stored at the internal nodes? There are several ways to do it. Different books adopt different conventions We will adopt the following convention: key i in an internal node is the smallest key in its i+1 subtree (i.e., right subtree of key i) I would even be less strict. Since internal nodes are “roadsigns”, I would just not bother to update the internal values. Even following this convention, there is no unique B + -tree for the same set of records

B + Tree Example 1 (Order 5, M=L=5) Records are stored at the leaves (we only show the keys here) Since L=5, each leaf has between 3 and 5 data items (root can be exception) Since M=5, each nonleaf node has between 3 to 5 children (root can be exception) Requiring nodes to be half full guarantees that the B+ tree does not degenerate into a simple binary tree

B + Tree Example 2 (Order M=L=4) We can still talk about left and right child pointers E.g., the left child pointer of N is the same as the right child pointer of J We can also talk about the left subtree and right subtree of a key in internal nodes

B+ Tree in Practical Usage Each internal node/leaf is designed to fit into one I/O block of data. An I/O block usually can hold quite a lot of data. This implies that the tree has only a few levels and only a few disk accesses can accomplish a search, insertion, or deletion B + -tree is a popular structure used in commercial databases. To further speed up the search, the first one or two levels of the B + - tree are usually kept in main memory wasted space: The disadvantage of B + -tree is that most nodes will have less than M-1 keys most of the time. The textbook calls the tree B-tree instead of B + -tree. In some other textbooks, B-tree refers to the variant where the actual records are kept at internal nodes as well as the leaves. Such a scheme is not practical. Keeping actual records at the internal nodes will limit the number of keys stored there, and thus increasing the number of tree levels

Searching Example Suppose that we want to search for the key K. The path traversed is shown in bold

Insertion find the leaf location Insert K into node loc Splitting (instead of rotations in AVL trees) of nodes is used to maintain properties of B + -trees If leaf loc contains < L keys, then insert K into loc (at the correct position If x is already full (i.e. containing L keys). Split loc Cut loc off from its parent Split loc into two pieces. Insert K into the correct piece Identify key to be the parent of x L and x R, and insert the copy together with its child pointers into the old parent of x.

Inserting into a Non-full Leaf (L=3)

Splitting a Leaf: Inserting T (L=3)

Splitting Example 2 (L=3, M=4)

Splitting an Internal Node To insert a key K into a full internal node x: Cut x off from its parent Insert K and its left and right child pointers into x, pretending there is space. Now x has M keys. Split x into 2 new internal nodes x L and x R, with x L containing the (  M/2  - 1 ) smallest keys, and x R containing the  M/2  largest keys. Note that the (  M/2  )th key J is not placed in x L or x R Make J the parent of x L and x R, and insert J together with its child pointers into the old parent of x.

Notice the multiple splits

Termination Splitting will continue as long as we encounter full internal nodes If the split internal node x does not have a parent (i.e. x is a root), then create a new root containing the key J and its two children

Deletion Find and delete in leaf May have too few nodes. Do reverse of add (pull down and slap together) BUT, it could be that when you combine neighbor nodes you get a node that is too large. Then, you would have to split it apart. Better to shift some of the records from a neighbor into the leaf that is too small.

Removal of a Key target can appear in at most one ancestor y of x as a key (why?) Node y is seen when we searched down the tree After deleting from node x, we can access y directly and replace target by the new smallest key in x

Deletion Example – deletion causes no issues Want to delete 15

Want to delete 9 Again, no problems

Want to delete 10, situation 1

u v Deletion of 10 node too small Note, if would have merged with left (7,8) node, no problems would have occurred

Share with right neighbor

Example Want to delete 12

Cont’d u v

too few keys! …

Deleting a Key in an Internal Node Suppose we remove a key from an internal node u, and u has less than  M/2  -1 keys after that Case 1: u is a root If u is empty, then remove u and make its child the new root

Deleting a key in an internal node Case 2: the right sibling v of u has  M/2  keys or more Move the separating key between u and v in the parent of u and v down to u Make the leftmost child of v the rightmost child of u Move the leftmost key in v to become the separating key between u and v in the parent of u and v. Case 2: the left sibling v of u has  M/2  keys or more Move the separating key between u and v in the parent of u and v down to u. Make the rightmost child of v the leftmost child of u Move the rightmost key in v to become the separating key between u and v in the parent of u and v.

…Continue From Previous Example u v case 2

Cont’d

Deleting a key in an internal node Case 3: all sibling v of u contains exactly  M/2  - 1 keys Move the separating key between u and v in the parent of u and v down to u Move the keys and child pointers in u to v Remove the pointer to u at parent.

Example Want to delete 5

Cont’d u v

Cont’d - Pull 7 down and slap together u v case 3

Cont’d

Another example B+tree-ind-hash.pdf B+tree-ind-hash.pdf