balanced binary search tree
play

Balanced Binary Search Tree Algorithm : Design & Analysis [8] - PowerPoint PPT Presentation

Balanced Binary Search Tree Algorithm : Design & Analysis [8] In the last class Finding max and min Finding the second largest key Adversary argument and lower bound Selection Problem Median A Linear Time Selection


  1. Balanced Binary Search Tree Algorithm : Design & Analysis [8]

  2. In the last class… � Finding max and min � Finding the second largest key � Adversary argument and lower bound � Selection Problem – Median � A Linear Time Selection Algorithm � Analysis of Selection Algorithm � A Lower Bound for Finding the Median

  3. Balanced Binary Search Tree � Definition of red-black tree � Black height � Insertion into a red-black tree � Deletion from a red-black tree

  4. Binary Search Tree Revisited Poor balancing Good balancing 40 30 Θ ( n ) Θ (log n ) 60 80 20 20 80 30 50 60 40 In a properly drawn tree, pushing forward to get the ordered list. 50 •Each node has a key, belonging to a linear ordered set •Each node has a key, belonging to a linear ordered set •An inorder traversal produces a sorted list of the keys •An inorder traversal produces a sorted list of the keys

  5. Node Group in a binTree As in 2-tree, the number of external node is one more Node group Node group than that of 50 internal node 70 70 15 80 80 60 60 25 10 40 75 20 65 75 90 30 5 principal subtrees 5 principal subtrees

  6. Improving the Balancing by Rotation The node group 50 50 to be rotated 25 Root of the group 15 is changed. 15 40 25 10 10 20 30 40 20 30 The middle principal subtree changes parent

  7. Red-Black Tree: the Definition � If T is a binary tree in which each node has a color, red or black, and all external nodes are black, then T is a red-black tree if and only if: � [ Color constraint ] No red node has a red child � [ Black height constrain ] The black length of all external paths from a given node u is the same (the black height of u ) � The root is black. Balancing is Balancing is � Almost -red-black tree(ARB tree) under controlled under controlled � Root is red, satisfying the other constraints.

  8. Recursive Definition of Red-Black Tree (A red-black tree of black height h is denoted as RB h ) � Definition: � An external node is an RB 0 tree, and the node is black. � A binary tree is an A RB h ( h ≥ 1) tree if: No ARB 0 � Its root is red, and � Its left and right subtrees are each an RB h -1 tree. � A binary tree is an RB h ( h ≥ 1) tree if: � Its root is black, and � Its left and right subtrees are each either an RB h -1 tree or an ARB h tree.

  9. RB i and ARB i RB 0 (1) (2) (3) (4) ARB 1 RB 1

  10. Red-Black Tree with 6 Nodes 40 60 poorest balancing: 20 30 height(normal) is 4 80 30 50 20 60 Black edge 80 40 50 60 40 20 80 30 50

  11. Black-Depth Convention All with the same All with the same largest black depth: 2 largest black depth: 2 40 20 60 80 30 50 30 60 80 20 50 40 40 60 20 30 80 50 ARB Trees ARB Trees

  12. Properties of Red-Black Tree � The black height of any RB h tree or ARB h tree is well defind and is h . � Let T be an RB h tree, then: � T has at least 2 h -1 internal black nodes. � T has at most 4 h -1 internal nodes. � The depth of any black node is at most twice its black depth. � Let A be an ARB h tree, then: � A has at least 2 h -2 internal black nodes. � A has at most (4 h )/2-1 internal nodes. � The depth of any black node is at most twice its black depth.

  13. Well-Defined Black Height � That “the black height of any RB h tree or ARB h tree is well defind” means the black length of all external paths from the root is the same . � Proof: induction on h � Base case: h =0, that is RB 0 (there is no ARB 0 ) � In ARB h+1 , its two subtrees are both RB h .Since the root is red, the black length of all external paths from the root is h , that’s the same as its two subtrees. � In RB h+1 : � Case 1: two subtrees are RB h ’s � Case 2: two subtrees are ARB h+1 ’s � Case 3: one subtree is an RB h (black height= h ), and the another is an ARB h+1 (black height= h +1)

  14. Bound on Depth of Node in RBTree � Let T be a red-black tree with n internal nodes. Then no node has depth greater than 2lg( n +1), which means that the height of T in the usual sense is at most 2lg( n +1). � Proof: � Let h be the black height of T . The number of internal nodes, n , is at least the number of internal black nodes, which is at least 2 h -1, so h ≤ lg( n +1). The node with greatest depth is some external node. All external nodes are with black depth h . So, the depth is at most 2 h .

  15. Influences of Insertion into an RB Tree � Black height constrain: � No violation if inserting a red node. � Color constraint: Critical clusters (external Critical clusters (external nodes excluded), which nodes excluded), which 40 originated by color violation, originated by color violation, with 3 or 4 red nodes with 3 or 4 red nodes 20 60 80 30 50 40 20 60 70 80 30 50 Inserting 70

  16. Repairing 4-node Critical Cluster 40 No new critical No new critical cluster occurs, 20 cluster occurs, 60 70 80 30 50 inserting finished. inserting finished. Color flip: Color flip: 40 60 Root of the critical Root of the critical cluster exchanges color cluster exchanges color 20 70 80 30 50 with its subtrees with its subtrees

  17. Repairing 4-node Critical Cluster 2 more insertions 40 60 Critical cluster 20 70 80 85 90 30 50 New critical New critical cluster with 3 cluster with 3 nodes. nodes. 40 60 80 Color flip Color flip doesn’t work, doesn’t work, 20 70 85 90 30 50 Why? Why?

  18. Patterns of 3-Node Critical Cluster B A L L M R M R LR RR LR RR RL RL LL LL Shown as properly drawn D C L M R L M R LR RR RL LL LR RR RL LL 85

  19. Repairing 3-Node Critical Cluster All into one pattern Root of the critical L M R cluster is changed to M , and the parentship is adjusted accordingly LR RR RL LL The incurred critical cluster is of pattern A 40 60 80 20 70 85 90 30 50

  20. Implementing Insertion: Class class RBtree class RBtree Element root; Element root; RBtree leftSubtree; RBtree leftSubtree; RBtree rightSubtree; RBtree rightSubtree; int color; /* red, black */ int color; /* red, black */ Color pattern static class InsReturn static class InsReturn public RBtree newTree; public RBtree newTree; public int status /* ok, rbr, brb, rrb, brr */ public int status /* ok, rbr, brb, rrb, brr */

  21. Implementing Insertion: Procedure RBtree rbtInsert (RBtree oldRBtree, Element newNode) RBtree rbtInsert (RBtree oldRBtree, Element newNode) InsReturn ans = rbtIns (oldREtree, newNode); InsReturn ans = rbtIns (oldREtree, newNode); If (ans.newTree.color ≠ black) If (ans.newTree.color ≠ black) InsReturn rbtIns (RBtree oldRBtree, Element newNode) ans.newTree.color = black; InsReturn ans, ansLeft, ansRight; ans.newTree.color = black; return ans.newTree; if (oldRBtree = nil) then < Inserting simply> ; return ans.newTree; else the wrapper if (newNode.key <oldRBtree.root.key) ansLeft = rbtIns (oldRBtree.leftSubtree, newNode); ans = repairLeft (oldRBtree, ansLeft); else ansRight = rbtIns (oldRBtree.rightSubtree, newNode); ans = repairRight (oldRBtree, ansRight); return ans the recursive function

  22. Correctness of Insertion � If the parameter oldRBtree of rbtIns is an RB h tree or an ARB h+1 tree(which is true for the recursive calls on rbtIns), then the newTree and status fields returned are one of the following combinations: � Status=ok, and newTree is an RB h or an ARB h+1 tree, � Status=rbr, and newTree is an RB h , � Status=brb, and newTree is an ARB h+1 tree, � Status=rrb, and newTree.color=red, newTree.leftSubtree is an ARB h+1 tree and newTree.rightSubtree is an RB h tree, � Status=brr, and newTree.color=red, newTree.rightSubtree is an ARB h+1 tree and newTree.leftSubtree is an RB h tree � For those cases with red root, the color will be changed to black, with other constraints satisfied by repairing subroutines.

  23. Deletion: Logical and Structral π is parent of σ π is parent of σ u : to be deleted logically u : to be deleted logically π 80 40 60 20 70 85 90 30 50 S σ : tree successor of u , to be σ : tree successor of u , to be right subtree of S, right subtree of S, deleted structurally, with deleted structurally, with to replacing S to replacing S information moved into u information moved into u π 80 40 70 20 85 90 30 50 After deletion

  24. Deletion from RBTree: Examples Original tree 80 40 60 20 70 85 90 30 50 u , π 85 40 60 20 70 30 90 50 80 80 40 60 u , π 20 70 30 90 50 85 u , π 80 50 60 20 40 70 85 90 30

  25. Deletion in a Red-Black Tree To be deleted To be deleted 40 60 80 20 70 85 90 30 50 one deletion The black height of π π is not well-defined ! 40 70 80 20 85 90 30 50 black depth=1 black depth=2

  26. Procedure of Red-Black Deletion 1. Do a standard BST search to locate the node to be logically deleted, call it u 2. If the right child of u is an external node, identify u as the node to be structurally deleted. 3. If the right child of u is an internal node, find the tree successor of u , call it σ , copy the key and information from σ to u. (color of u not changed) Identify σ as the node to be deleted structurally. 4. Carry out the structural deletion and repair any imbalance of black height.

  27. Imbalance of Black Height 40 60 80 20 70 85 90 30 50 deleting 80 deleting 40 50 85 Black height has to be restored 20 90 30 70 deleting 60 80 deleting 85 70 80 90 85 90

Download Presentation
Download Policy: The content available on the website is offered to you 'AS IS' for your personal information and use only. It cannot be commercialized, licensed, or distributed on other websites without prior consent from the author. To download a presentation, simply click this link. If you encounter any difficulties during the download process, it's possible that the publisher has removed the file from their server.

Recommend


More recommend