Red - Black Trees

Post on 09-Feb-2016

40 views 5 download

description

Red - Black Trees. Acknowledgment Many thanks to “ erm ” from Purdue University for this very interesting way of presenting this course material. Red -Black Tree. A red -black tree is a binary search tree with the following properties: • edges are colored red or black - PowerPoint PPT Presentation

Transcript of Red - Black Trees

1

Red-Black Trees

AcknowledgmentMany thanks to “erm” from Purdue University for this very interesting way of presenting this

course material.

2

A red-black tree is a binary search tree with the following properties:• edges are colored red or black• no two consecutive red edges on any root-leaf path• same number of black edges on any root-leaf path

(= black height of the tree)• edges connecting leaves are black

Red-Black Tree

3

Correspondence between2-3-4 and Red-Black trees

Notice that red-black trees are just a way of representing 2-3-4 trees!

4

More Red-Black TreeProperties

5

Insertion into Red-Black Trees1.Perform a standard search to find the leaf where the key should be added2.Replace the leaf with an internal node with the new key3.Color the incoming edge of the new node red4. Add two new leaves, and color their incoming edges black5.If the parent had an incoming red edge, we have two consecutive red edges!

We must reorganize tree to remove that violation. What must be done depends on the sibling of the parent.

6

7

8

9

10

11

12

13

Insertion: an example

Start by inserting “REDSOX” into an empty tree

14

15

16

17

18

19

20

21