data structures in java
play

Data Structures in Java Lecture 11: B-Trees. 10/14/2015 Daniel - PowerPoint PPT Presentation

Data Structures in Java Lecture 11: B-Trees. 10/14/2015 Daniel Bauer Homework, Midterm etc. Homework 3 is out! Due: Friday October 23rd. Jarvis tests in preparation. Homework 2 grading is almost done. Make sure to only submit


  1. Data Structures in Java Lecture 11: B-Trees. 10/14/2015 Daniel Bauer

  2. Homework, Midterm etc. • Homework 3 is out! Due: Friday October 23rd. 
 Jarvis tests in preparation. • Homework 2 grading is almost done. • Make sure to only submit .pdf and .txt (or Github markdown .md) for theory. Put the the main directory for each homework 
 homework-<youruni>/3/ and not 
 homework-<uni>/3/src/ • Sample questions for Midterm to be released this weekend. 


  3. Review: Binary Search Trees • BST property: r • For all nodes s in T l , s item < r item . T r T l • F or all nodes t in T l , t item > r item . 
 • To keep BST operations (search/insert/delete/findMin/ findMax) efficient, we need to maintain a balanced tree: • height of the tree should be close to log(N). • Example: AVL balancing condition, height difference between left and right subtree is at most 1.

  4. M-ary Trees • Each node can have M subnodes. • Height of a complete M-ary tree is .

  5. M-ary Search Tree • We can generalize binary search trees to M-ary search trees. 20 7 23 . 1 2 3 9 21 10 4-ary search tree: Nodes have 1,2, or 3 data items and 0 to 4 children.

  6. 
 2-3-4 Trees • A 2-3-4 Tree is a balanced 4-Ary search tree. • Three types of internal nodes: r • a 2-node has 1 item and 2 children. x<r x>r • a 3-node has 2 item and 3 children. r s • a 4-node has 3 item and 4 children. 
 r<x<s x>s <r r s t <r r<x<s s<x<t >t • Balance condition: 
 All leaves have the same depth. 
 (height of the left and right subtree is always identical)

  7. c ontains in a 2-3-4 Tree 53 53 contains(55) 27 38 60 60 70 16 25 33 41 65 73 36 46 48 55 55 59 68 75 79 • At each level try to find the item: 2 steps = O(c) • If not found, follow reference down the tree. There are at most O(height(T)) = O(log N) references.

  8. insert into a 2-3-4 Tree 53 53 insert(34) 38 27 38 60 70 16 41 65 73 25 46 48 55 59 68 75 79 33 36 • Follow the same steps as contains. • If X is found, do nothing. • If there is still space in the leaf that 
 should contain X, add it.

  9. insert into a 2-3-4 Tree 53 53 insert(34) 38 27 38 60 70 16 41 65 73 25 46 48 55 59 68 75 79 33 34 36 • Follow the same steps as contains. • If X is found, do nothing. • If there is still space in the leaf that 
 should contain X, add it. • What if the leaf is full?

  10. insert: splitting nodes 53 53 insert(72) 27 38 70 60 70 16 41 65 73 25 36 46 48 55 59 68 75 79 33 34 • If the leaf is full, evenly split it into two nodes. • choose median m of values. • left node contains items < m , right node contains items > m . • add median items to parent, keep references to new nodes left and right of it.

  11. insert: splitting nodes 53 53 insert(72) 27 38 70 60 70 16 41 65 25 36 46 48 55 59 68 75 33 34 72 73 79 • If the leaf is full, evenly split it into two nodes. • choose median m of values. • left node contains items < m , right node contains items > m . • add median items to parent, keep references to new nodes left and right of it.

  12. insert: splitting nodes 53 53 insert(72) 27 38 70 60 70 73 72 16 41 65 25 36 46 48 55 59 68 75 33 34 79 • If the leaf is full, evenly split it into two nodes. • choose median m of values. • left node contains items < m , right node contains items > m . • add median items to parent, keep references to new nodes left and right of it.

  13. insert: splitting nodes 53 53 insert(80) 27 38 73 60 70 16 41 65 72 80 25 36 46 48 55 59 68 33 34 75 79

  14. insert: splitting nodes 53 insert(90) 27 38 60 70 73 16 25 41 46 55 65 68 72 36 48 59 33 34 75 79 80 • If parent is also full, continue to split the parent until space can be found. • If root is full, create a new root with old root as a single child. • At most we need one pass down the tree and one pass up, so insertion is O(log N).

  15. insert: splitting nodes 53 insert(90) 27 38 60 70 73 16 25 41 46 55 65 68 72 36 48 59 33 34 75 79 80 90 • If parent is also full, continue to split the parent until space can be found. • If root is full, create a new root with old root as a single child. • At most we need one pass down the tree and one pass up, so insertion is O(log N).

  16. insert: splitting nodes 53 insert(90) 27 38 79 60 70 70 73 16 25 41 46 55 65 68 72 36 48 59 75 33 34 80 90 • If parent is also full, continue to split the parent until space can be found. • If root is full, create a new root with old root as a single child. • At most we need one pass down the tree and one pass up, so insertion is O(log N).

  17. insert: splitting nodes 70 53 insert(90) 27 38 79 60 73 16 25 41 46 55 65 68 72 36 48 59 75 33 34 80 90 • If parent is also full, continue to split the parent until space can be found. • If root is full, create a new root with old root as a single child. • At most we need one pass down the tree and one pass up, so insertion is O(log N).

  18. remove from a 2-3-4 tree 53 70 remove(80) 27 38 79 60 73 16 25 41 46 55 65 68 72 36 48 59 75 33 34 80 90 • Item in a 3- or 4-leaf can just be removed.

  19. remove from a 2-3-4 tree 53 70 remove(80) 27 38 79 60 73 16 25 41 46 55 65 68 72 36 48 59 75 33 34 90 • Item in a 3- or 4-leaf can just be removed.

  20. remove from a 2-3-4 tree 53 70 remove(53) 27 38 79 60 73 55 16 25 41 46 65 68 72 90 36 48 59 75 33 34 • Removal of an item v from internal node: • Continue down the tree to find the leaf with the next highest item w . Replace v with w . Remove w from its original position recursively.

  21. remove from a 2-3-4 tree 55 70 remove(53) 27 38 79 60 73 16 25 41 46 65 68 72 90 36 48 59 75 33 34 • Removal of an item v from internal node: • Continue down the tree to find the leaf with the next highest item w . Replace v with w . Remove w from its original position recursively.

  22. remove from a 2-3-4 tree 55 70 remove(59) 27 38 79 60 73 16 25 41 46 59 65 68 72 90 36 48 75 33 34 • Removal of an item form a leaf 2-node t: • We cannot simply remove t because the parent would not be well formed. • Move down an item from the parent of t. Replenish the parent by moving item from one of t’s siblings.

  23. remove from a 2-3-4 tree 55 70 remove(59) 27 38 79 60 73 16 25 41 46 65 68 72 90 36 48 75 33 34 • Removal of an item form a leaf 2-node t: • We cannot simply remove t because the parent would not be well formed. • Move down an item from the parent of t. Replenish the parent by moving item from one of t’s siblings.

  24. remove from a 2-3-4 tree 55 70 remove(59) 27 38 79 65 73 16 25 41 46 68 72 90 36 48 60 75 33 34 • Removal of an item form a leaf 2-node t: • We cannot simply remove t because the parent would not be well formed. • Move down an item from the parent of t. Replenish the parent by moving item from one of t’s siblings. What if no sibling is a 3 or 4 node?

  25. remove from a 2-3-4 tree 55 70 remove(72) 27 38 79 65 73 72 16 25 41 46 68 90 36 48 60 75 33 34 • Removal of a an item in a leaf 2-node that has no 3- or 4-node siblings: • Fuse the sibling node with one of the parent nodes.

  26. remove from a 2-3-4 tree 55 70 remove(72) 27 38 79 65 73 16 25 41 46 68 90 36 48 60 75 33 34 • Removal of a an item in a leaf 2-node that has no 3- or 4-node siblings: • Fuse the sibling node with one of the parent nodes.

  27. remove from a 2-3-4 tree 55 70 remove(72) 27 38 79 65 16 25 41 46 68 73 90 36 48 60 75 33 34 • Removal of a an item in a leaf 2-node that has no 3- or 4-node siblings: • Fuse the sibling node with one of the parent nodes.

  28. remove from a 2-3-4 tree 55 70 remove(72) 27 38 79 65 16 25 41 46 68 73 90 36 48 60 75 33 34 • Removal of a an item in a leaf 2-node that has no 3- or 4-node siblings: • Fuse the sibling node with one of the parent nodes. All modifications to fix the tree are local and therefore O(c). Remove runs in O(log N).

  29. B-Trees • A B-Tree is a generalization of the 2-3-4 tree to 
 M-ary search trees. • Every internal node (except for the root) has 
 children and contains values. • All leaves contain values (usually L=M-1) • All leaves have the same depth. • Often used to store large tables 
 27 38 on hard disk drives. 
 (databases, file systems) 16 25 41 46 33 34 36 48

  30. Memory Hierarchy Typical Memory Size Typical Access Times CPU < 1KB 5 ns registers 8MB 10 ns CPU caches 64GB (or less) Main Memory 100 ns Disk Storage >500GB 5 ms = 5 x 10 6 ns 200 accesses/second Memory access is much faster than disk access.

  31. Large BST on Disk (1) • Assume we have a very large database table, represented as a binary search tree: • 10 million items, 256 bytes each. • 6 disk accesses per second (shared system). • Assume no caching, every lookup requires disk access.

Recommend


More recommend