src/HOL/Data_Structures/RBT.thy
author nipkow
Sat, 28 Jan 2017 15:12:19 +0100
changeset 64960 8be78855ee7a
parent 64952 f11e974b47e0
child 67910 b42473502373
permissions -rw-r--r--
split balance into two, clearer etc
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
61224
759b5299a9f2 added red black trees
nipkow
parents:
diff changeset
     1
(* Author: Tobias Nipkow *)
759b5299a9f2 added red black trees
nipkow
parents:
diff changeset
     2
61469
cd82b1023932 added 2-3 trees (simpler and more complete than the version in ex/Tree23)
nipkow
parents: 61231
diff changeset
     3
section \<open>Red-Black Trees\<close>
61224
759b5299a9f2 added red black trees
nipkow
parents:
diff changeset
     4
759b5299a9f2 added red black trees
nipkow
parents:
diff changeset
     5
theory RBT
759b5299a9f2 added red black trees
nipkow
parents:
diff changeset
     6
imports Tree2
759b5299a9f2 added red black trees
nipkow
parents:
diff changeset
     7
begin
759b5299a9f2 added red black trees
nipkow
parents:
diff changeset
     8
759b5299a9f2 added red black trees
nipkow
parents:
diff changeset
     9
datatype color = Red | Black
759b5299a9f2 added red black trees
nipkow
parents:
diff changeset
    10
759b5299a9f2 added red black trees
nipkow
parents:
diff changeset
    11
type_synonym 'a rbt = "('a,color)tree"
759b5299a9f2 added red black trees
nipkow
parents:
diff changeset
    12
759b5299a9f2 added red black trees
nipkow
parents:
diff changeset
    13
abbreviation R where "R l a r \<equiv> Node Red l a r"
759b5299a9f2 added red black trees
nipkow
parents:
diff changeset
    14
abbreviation B where "B l a r \<equiv> Node Black l a r"
759b5299a9f2 added red black trees
nipkow
parents:
diff changeset
    15
64960
8be78855ee7a split balance into two, clearer etc
nipkow
parents: 64952
diff changeset
    16
fun baliL :: "'a rbt \<Rightarrow> 'a \<Rightarrow> 'a rbt \<Rightarrow> 'a rbt" where
8be78855ee7a split balance into two, clearer etc
nipkow
parents: 64952
diff changeset
    17
"baliL (R (R t1 a1 t2) a2 t3) a3 t4 = R (B t1 a1 t2) a2 (B t3 a3 t4)" |
8be78855ee7a split balance into two, clearer etc
nipkow
parents: 64952
diff changeset
    18
"baliL (R t1 a1 (R t2 a2 t3)) a3 t4 = R (B t1 a1 t2) a2 (B t3 a3 t4)" |
8be78855ee7a split balance into two, clearer etc
nipkow
parents: 64952
diff changeset
    19
"baliL t1 a t2 = B t1 a t2"
8be78855ee7a split balance into two, clearer etc
nipkow
parents: 64952
diff changeset
    20
8be78855ee7a split balance into two, clearer etc
nipkow
parents: 64952
diff changeset
    21
fun baliR :: "'a rbt \<Rightarrow> 'a \<Rightarrow> 'a rbt \<Rightarrow> 'a rbt" where
8be78855ee7a split balance into two, clearer etc
nipkow
parents: 64952
diff changeset
    22
"baliR t1 a1 (R (R t2 a2 t3) a3 t4) = R (B t1 a1 t2) a2 (B t3 a3 t4)" |
8be78855ee7a split balance into two, clearer etc
nipkow
parents: 64952
diff changeset
    23
"baliR t1 a1 (R t2 a2 (R t3 a3 t4)) = R (B t1 a1 t2) a2 (B t3 a3 t4)" |
8be78855ee7a split balance into two, clearer etc
nipkow
parents: 64952
diff changeset
    24
"baliR t1 a t2 = B t1 a t2"
61224
759b5299a9f2 added red black trees
nipkow
parents:
diff changeset
    25
61749
7f530d7e552d paint root black after insert and delete
nipkow
parents: 61678
diff changeset
    26
fun paint :: "color \<Rightarrow> 'a rbt \<Rightarrow> 'a rbt" where
7f530d7e552d paint root black after insert and delete
nipkow
parents: 61678
diff changeset
    27
"paint c Leaf = Leaf" |
7f530d7e552d paint root black after insert and delete
nipkow
parents: 61678
diff changeset
    28
"paint c (Node _ l a r) = Node c l a r"
61224
759b5299a9f2 added red black trees
nipkow
parents:
diff changeset
    29
64960
8be78855ee7a split balance into two, clearer etc
nipkow
parents: 64952
diff changeset
    30
fun baldL :: "'a rbt \<Rightarrow> 'a \<Rightarrow> 'a rbt \<Rightarrow> 'a rbt" where
8be78855ee7a split balance into two, clearer etc
nipkow
parents: 64952
diff changeset
    31
"baldL (R t1 x t2) y t3 = R (B t1 x t2) y t3" |
8be78855ee7a split balance into two, clearer etc
nipkow
parents: 64952
diff changeset
    32
"baldL bl x (B t1 y t2) = baliR bl x (R t1 y t2)" |
8be78855ee7a split balance into two, clearer etc
nipkow
parents: 64952
diff changeset
    33
"baldL bl x (R (B t1 y t2) z t3) = R (B bl x t1) y (baliR t2 z (paint Red t3))" |
8be78855ee7a split balance into two, clearer etc
nipkow
parents: 64952
diff changeset
    34
"baldL t1 x t2 = R t1 x t2"
61224
759b5299a9f2 added red black trees
nipkow
parents:
diff changeset
    35
64960
8be78855ee7a split balance into two, clearer etc
nipkow
parents: 64952
diff changeset
    36
fun baldR :: "'a rbt \<Rightarrow> 'a \<Rightarrow> 'a rbt \<Rightarrow> 'a rbt" where
8be78855ee7a split balance into two, clearer etc
nipkow
parents: 64952
diff changeset
    37
"baldR t1 x (R t2 y t3) = R t1 x (B t2 y t3)" |
8be78855ee7a split balance into two, clearer etc
nipkow
parents: 64952
diff changeset
    38
"baldR (B t1 x t2) y t3 = baliL (R t1 x t2) y t3" |
8be78855ee7a split balance into two, clearer etc
nipkow
parents: 64952
diff changeset
    39
"baldR (R t1 x (B t2 y t3)) z t4 = R (baliL (paint Red t1) x t2) y (B t3 z t4)" |
8be78855ee7a split balance into two, clearer etc
nipkow
parents: 64952
diff changeset
    40
"baldR t1 x t2 = R t1 x t2"
61224
759b5299a9f2 added red black trees
nipkow
parents:
diff changeset
    41
759b5299a9f2 added red black trees
nipkow
parents:
diff changeset
    42
fun combine :: "'a rbt \<Rightarrow> 'a rbt \<Rightarrow> 'a rbt" where
759b5299a9f2 added red black trees
nipkow
parents:
diff changeset
    43
"combine Leaf t = t" |
759b5299a9f2 added red black trees
nipkow
parents:
diff changeset
    44
"combine t Leaf = t" |
61678
b594e9277be3 tuned white space
nipkow
parents: 61534
diff changeset
    45
"combine (R t1 a t2) (R t3 c t4) =
b594e9277be3 tuned white space
nipkow
parents: 61534
diff changeset
    46
  (case combine t2 t3 of
b594e9277be3 tuned white space
nipkow
parents: 61534
diff changeset
    47
     R u2 b u3 \<Rightarrow> (R (R t1 a u2) b (R u3 c t4)) |
b594e9277be3 tuned white space
nipkow
parents: 61534
diff changeset
    48
     t23 \<Rightarrow> R t1 a (R t23 c t4))" |
b594e9277be3 tuned white space
nipkow
parents: 61534
diff changeset
    49
"combine (B t1 a t2) (B t3 c t4) =
b594e9277be3 tuned white space
nipkow
parents: 61534
diff changeset
    50
  (case combine t2 t3 of
b594e9277be3 tuned white space
nipkow
parents: 61534
diff changeset
    51
     R t2' b t3' \<Rightarrow> R (B t1 a t2') b (B t3' c t4) |
64960
8be78855ee7a split balance into two, clearer etc
nipkow
parents: 64952
diff changeset
    52
     t23 \<Rightarrow> baldL t1 a (B t23 c t4))" |
61224
759b5299a9f2 added red black trees
nipkow
parents:
diff changeset
    53
"combine t1 (R t2 a t3) = R (combine t1 t2) a t3" |
759b5299a9f2 added red black trees
nipkow
parents:
diff changeset
    54
"combine (R t1 a t2) t3 = R t1 a (combine t2 t3)" 
759b5299a9f2 added red black trees
nipkow
parents:
diff changeset
    55
759b5299a9f2 added red black trees
nipkow
parents:
diff changeset
    56
end