topic 23
play

Topic 23 Red Black Trees "People in every direction No words - PowerPoint PPT Presentation

Topic 23 Red Black Trees "People in every direction No words exchanged No time to exchange And all the little ants are marching Red and Black antennas waving" - Ants Marching, Dave Matthew's Band "Welcome to L.A.'s Automated


  1. Topic 23 Red Black Trees "People in every direction No words exchanged No time to exchange And all the little ants are marching Red and Black antennas waving" - Ants Marching, Dave Matthew's Band "Welcome to L.A.'s Automated Traffic Surveillance and Control Operations Center. See, they use video feeds from intersections and specifically designed algorithms to predict traffic conditions, and thereby control traffic lights. So all I did was come up with my own... kick ass algorithm to sneak in, and now we own the place." -Lyle, the Napster, (Seth Green), The Italian Job

  2. Clicker 1  2000 elements are inserted one at a time into an initially empty binary search tree using the traditional, naive algorithm. What is the maximum possible height of the resulting tree? A. 1 B. 11 C. 21 D. 500 E. 1999 CS314 2 Red Black Trees

  3. Binary Search Trees  Average case and worst case Big O for – insertion – deletion – access  Balance is important. Unbalanced trees give worse than log N times for the basic tree operations  Can balance be guaranteed? CS314 3 Red Black Trees

  4. Red Black Trees  A BST with more complex algorithms to ensure balance  Each node is labeled as Red or Black.  Path: A unique series of links (edges) traverses from the root to each node. – The number of edges (links) that must be followed is the path length  In Red Black trees paths from the root to elements with 0 or 1 child are of particular interest CS314 4 Red Black Trees

  5. Paths to Single or Zero Child Nodes  How many? 19 35 12 21 16 3 56 1 CS314 5 Red Black Trees

  6. Red Black Tree Rules 1. Every node is colored either red or black 2. The root is black 3. If a node is red its children must be black. (a.k.a. the red rule) 4. Every path from a node to a null link must contain the same number of black nodes (a.k.a. the path rule) CS314 6 Red Black Trees

  7. Example of a Red Black Tree  The root of a Red Black tree is black  Every other node in the tree follows these rules: – Rule 3: If a node is Red, all of its children are Black – Rule 4: The number of Black nodes must be the same in all paths from the root node to null nodes 19 35 12 21 16 3 56 30 CS314 7 Red Black Trees

  8. Red Black Tree? 19 35 12 50 0 75 -10 135 -5 CS314 8 Red Black Trees

  9. Clicker 2  Is the tree on the previous slide a binary search tree? Is it a red black tree? BST? Red-Black? A. No No B. No Yes C. Yes No D. Yes Yes CS314 9 Red Black Trees

  10. Red Black Tree? 19 35 12 16 3 0 Perfect? Full? Complete? CS314 10 Red Black Trees

  11. Clicker 3  Is the tree on the previous slide a binary search tree? Is it a red black tree? BST? Red-Black? A. No No B. No Yes C. Yes No D. Yes Yes CS314 11 Red Black Trees

  12. Implications of the Rules  If a Red node has any children, it must have two children and they must be Black. (Why?)  If a Black node has only one child that child must be a Red leaf. (Why?)  Due to the rules there are limits on how unbalanced a Red Black tree may become. – on the previous example may we hang a new node off of the leaf node that contains 0? CS314 12 Red Black Trees

  13. Properties of Red Black Trees  If a Red Black Tree is complete, with all Black nodes except for Red leaves at the lowest level the height will be minimal, ~log N  To get the max height for N elements there should be as many Red nodes as possible down one path and all other nodes are Black – This means the max height would b approximately 2 * log N (don't use this as a formula) – typically less than this – see example on next slide – interesting exercise, draw max height tree with N nodes

  14. Max Height Red Black Tree 14 35 12 21 13 56 1 43 99 15 25 100 80 14 nodes, height 5 70 CS314 14 Red Black Trees

  15. Maintaining the Red Black Properties in a Tree  Insertions  Must maintain rules of Red Black Tree.  New Node always a leaf – can't be black or we will violate rule 4 – therefore the new leaf must be red – If parent is black, done (trivial case) – if parent red, things get interesting because a red leaf with a red parent violates rule 3 CS314 15 Red Black Trees

  16. Insertions with Red Parent - Child Must modify tree when insertion would result in Red Parent - Child pair using color changes and rotations. 30 70 15 60 20 85 10 80 90 50 65 5 40 55 CS314 16 Red Black Trees

  17. Case 1  Suppose sibling of parent is Black. – by convention null nodes are black  In the previous tree, true if we are inserting a 3 or an 8. – What about inserting a 99? Same case?  Let X be the new leaf Node, P be its Red Parent, S the Black sibling and G, P's and S's parent and X's grandparent – What color is G? CS314 17 Red Black Trees

  18. Case 1 - The Picture G S P D C E X B A Relative to G, X could be an inside or outside node. Outside -> left left or right right moves Inside -> left right or right left moves CS314 18 Red Black Trees

  19. Fixing the Problem G S P D C E X B A If X is an outside node a single rotation between P and G fixes the problem. A rotation is an exchange of roles between a parent and child node. So P becomes G's parent. Also must recolor P and G. CS314 19 Red Black Trees

  20. Single Rotation P G X C A B S E D Apparent rule violation? Recall, S is null if X is a leaf, so no problem If this occurs higher in the tree (why?) subtrees A, B, and C will have one more black node than D and E. CS314 20 Red Black Trees

  21. Case 2  What if X is an inside node relative to G? – a single rotation will not work  Must perform a double rotation – rotate X and P G – rotate X and G S P D E A X C B CS314 21 Red Black Trees

  22. First Rotation  Rotate P and X, no color change G S X P D C E B A  What does this actually do? CS314 22 Red Black Trees

  23. After Double Rotation X G P C A B S E D CS314 23 Red Black Trees

  24. Case 3 Sibling is Red, not Black G S P D E C X A B Any problems? CS314 24 Red Black Trees

  25. Fixing Tree when S is Red  Must perform single rotation between parent, P and grandparent, G, and then make appropriate color changes P G X C S B A D E CS314 25 Red Black Trees

  26. More on Insert  Problem: What if on the previous example G's parent (GG!) had been red?  Easier to never let Case 3 ever occur!  On the way down the tree, if we see a node X that has 2 Red children, we make X Red and its two children black. – if recolor the root, recolor it to black – the number of black nodes on paths below X remains unchanged – If X's parent was Red then we have introduced 2 consecutive Red nodes.(violation of rule) – to fix, apply rotations to the tree, same as inserting node CS314 26 Red Black Trees

  27. Example of Inserting Sorted Numbers  1 2 3 4 5 6 7 8 9 10 Insert 1. A leaf so red. Realize it is 1 root so recolor to black. 1 CS314 27 Red Black Trees

  28. Insert 2 make 2 red. Parent 1 is black so done. 2 CS314 28 Red Black Trees

  29. Insert 3 1 Insert 3. Parent is red. Parent's sibling is black 2 (null) 3 is outside relative to grandparent. Rotate 3 parent and grandparent 2 3 1 CS314 29 Red Black Trees

  30. Insert 4 On way down see 2 with 2 red children. 2 Recolor 2 red and children black. 2 3 1 3 1 2 When adding 4 parent is black 3 1 so done. 4 Set root to black! CS314 30 Red Black Trees

  31. Insert 5 5's parent is red. 2 Parent's sibling is black (null). 5 is 3 1 outside relative to grandparent (3) so rotate 4 parent and grandparent then recolor 5 CS314 31 Red Black Trees

  32. Finish insert of 5 2 4 1 3 5 CS314 32 Red Black Trees

  33. Insert 6 On way down see 2 4 with 2 red children. Make 4 4 red and children 1 black. 4's parent is black so no problem. 3 5 CS314 33 Red Black Trees

  34. Finishing insert of 6 2 6's parent is black so done. 4 1 3 5 6 CS314 34 Red Black Trees

  35. Insert 7 2 7's parent is red. Parent's sibling is 4 black (null). 7 is 1 outside relative to grandparent (5) so 3 5 rotate parent and grandparent then recolor 6 7 CS314 35 Red Black Trees

  36. Finish insert of 7 2 4 1 3 6 7 5 CS314 36 Red Black Trees

  37. Insert 8 The caveat!!! 2 On way down see 6 4 1 with 2 red children. Make 6 red and 3 children black. This 6 creates a problem 7 because 6's parent, 4, is 5 also red. Must perform rotation. CS314 37 Red Black Trees

  38. Still Inserting 8 2 Recolored now need to 4 1 rotate. 3 6 Recall, the subtrees and the one extra 7 5 black node. CS314 38 Red Black Trees

  39. Finish inserting 8 4 Recolored now need to 2 6 rotate 7 1 3 5 8 CS314 39 Red Black Trees

  40. Insert 9 4 2 6 7 1 3 5 On way down see 4 has two red children 8 so recolor 4 red and children black. Realize 4 is the root so recolor black 9 CS314 40 Red Black Trees

  41. Finish Inserting 9 4 2 6 8 1 3 5 7 9 After rotations and recoloring CS314 41 Red Black Trees

  42. Insert 10 4 2 6 8 1 3 5 On way down see 8 has two 7 9 red children so change 8 to red and children black 10 CS314 42 Red Black Trees

  43. Insert 11 4 2 6 8 1 3 5 7 9 Again a rotation is 10 needed. 11 CS314 43 Red Black Trees

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