src/HOL/Data_Structures/Tree23_Set.thy
author wenzelm
Wed, 04 Nov 2015 23:27:00 +0100
changeset 61578 6623c81cb15a
parent 61534 a88e07c8d0d5
child 61581 00d9682e8dd7
permissions -rw-r--r--
avoid ligatures;
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
61469
cd82b1023932 added 2-3 trees (simpler and more complete than the version in ex/Tree23)
nipkow
parents:
diff changeset
     1
(* Author: Tobias Nipkow *)
cd82b1023932 added 2-3 trees (simpler and more complete than the version in ex/Tree23)
nipkow
parents:
diff changeset
     2
61513
nipkow
parents: 61469
diff changeset
     3
section \<open>A 2-3 Tree Implementation of Sets\<close>
61469
cd82b1023932 added 2-3 trees (simpler and more complete than the version in ex/Tree23)
nipkow
parents:
diff changeset
     4
cd82b1023932 added 2-3 trees (simpler and more complete than the version in ex/Tree23)
nipkow
parents:
diff changeset
     5
theory Tree23_Set
cd82b1023932 added 2-3 trees (simpler and more complete than the version in ex/Tree23)
nipkow
parents:
diff changeset
     6
imports
cd82b1023932 added 2-3 trees (simpler and more complete than the version in ex/Tree23)
nipkow
parents:
diff changeset
     7
  Tree23
cd82b1023932 added 2-3 trees (simpler and more complete than the version in ex/Tree23)
nipkow
parents:
diff changeset
     8
  Set_by_Ordered
cd82b1023932 added 2-3 trees (simpler and more complete than the version in ex/Tree23)
nipkow
parents:
diff changeset
     9
begin
cd82b1023932 added 2-3 trees (simpler and more complete than the version in ex/Tree23)
nipkow
parents:
diff changeset
    10
cd82b1023932 added 2-3 trees (simpler and more complete than the version in ex/Tree23)
nipkow
parents:
diff changeset
    11
fun isin :: "'a::linorder tree23 \<Rightarrow> 'a \<Rightarrow> bool" where
cd82b1023932 added 2-3 trees (simpler and more complete than the version in ex/Tree23)
nipkow
parents:
diff changeset
    12
"isin Leaf x = False" |
cd82b1023932 added 2-3 trees (simpler and more complete than the version in ex/Tree23)
nipkow
parents:
diff changeset
    13
"isin (Node2 l a r) x = (x < a \<and> isin l x \<or> x=a \<or> isin r x)" |
cd82b1023932 added 2-3 trees (simpler and more complete than the version in ex/Tree23)
nipkow
parents:
diff changeset
    14
"isin (Node3 l a m b r) x =
61534
a88e07c8d0d5 tuned names and optimized comparison order
nipkow
parents: 61513
diff changeset
    15
  (x < a \<and> isin l x \<or> x > b \<and> isin r x \<or> x = a \<or> x = b \<or> isin m x)"
61469
cd82b1023932 added 2-3 trees (simpler and more complete than the version in ex/Tree23)
nipkow
parents:
diff changeset
    16
cd82b1023932 added 2-3 trees (simpler and more complete than the version in ex/Tree23)
nipkow
parents:
diff changeset
    17
datatype 'a up\<^sub>i = T\<^sub>i "'a tree23" | Up\<^sub>i "'a tree23" 'a "'a tree23"
cd82b1023932 added 2-3 trees (simpler and more complete than the version in ex/Tree23)
nipkow
parents:
diff changeset
    18
cd82b1023932 added 2-3 trees (simpler and more complete than the version in ex/Tree23)
nipkow
parents:
diff changeset
    19
fun tree\<^sub>i :: "'a up\<^sub>i \<Rightarrow> 'a tree23" where
cd82b1023932 added 2-3 trees (simpler and more complete than the version in ex/Tree23)
nipkow
parents:
diff changeset
    20
"tree\<^sub>i (T\<^sub>i t) = t" |
cd82b1023932 added 2-3 trees (simpler and more complete than the version in ex/Tree23)
nipkow
parents:
diff changeset
    21
"tree\<^sub>i (Up\<^sub>i l p r) = Node2 l p r"
cd82b1023932 added 2-3 trees (simpler and more complete than the version in ex/Tree23)
nipkow
parents:
diff changeset
    22
cd82b1023932 added 2-3 trees (simpler and more complete than the version in ex/Tree23)
nipkow
parents:
diff changeset
    23
fun ins :: "'a::linorder \<Rightarrow> 'a tree23 \<Rightarrow> 'a up\<^sub>i" where
61534
a88e07c8d0d5 tuned names and optimized comparison order
nipkow
parents: 61513
diff changeset
    24
"ins x Leaf = Up\<^sub>i Leaf x Leaf" |
a88e07c8d0d5 tuned names and optimized comparison order
nipkow
parents: 61513
diff changeset
    25
"ins x (Node2 l a r) =
a88e07c8d0d5 tuned names and optimized comparison order
nipkow
parents: 61513
diff changeset
    26
   (if x < a then
a88e07c8d0d5 tuned names and optimized comparison order
nipkow
parents: 61513
diff changeset
    27
      case ins x l of
a88e07c8d0d5 tuned names and optimized comparison order
nipkow
parents: 61513
diff changeset
    28
         T\<^sub>i l' => T\<^sub>i (Node2 l' a r)
a88e07c8d0d5 tuned names and optimized comparison order
nipkow
parents: 61513
diff changeset
    29
       | Up\<^sub>i l1 b l2 => T\<^sub>i (Node3 l1 b l2 a r)
a88e07c8d0d5 tuned names and optimized comparison order
nipkow
parents: 61513
diff changeset
    30
    else if x=a then T\<^sub>i (Node2 l x r)
61469
cd82b1023932 added 2-3 trees (simpler and more complete than the version in ex/Tree23)
nipkow
parents:
diff changeset
    31
    else
61534
a88e07c8d0d5 tuned names and optimized comparison order
nipkow
parents: 61513
diff changeset
    32
      case ins x r of
a88e07c8d0d5 tuned names and optimized comparison order
nipkow
parents: 61513
diff changeset
    33
        T\<^sub>i r' => T\<^sub>i (Node2 l a r')
a88e07c8d0d5 tuned names and optimized comparison order
nipkow
parents: 61513
diff changeset
    34
      | Up\<^sub>i r1 b r2 => T\<^sub>i (Node3 l a r1 b r2))" |
a88e07c8d0d5 tuned names and optimized comparison order
nipkow
parents: 61513
diff changeset
    35
"ins x (Node3 l a m b r) =
a88e07c8d0d5 tuned names and optimized comparison order
nipkow
parents: 61513
diff changeset
    36
   (if x < a then
a88e07c8d0d5 tuned names and optimized comparison order
nipkow
parents: 61513
diff changeset
    37
      case ins x l of
a88e07c8d0d5 tuned names and optimized comparison order
nipkow
parents: 61513
diff changeset
    38
        T\<^sub>i l' => T\<^sub>i (Node3 l' a m b r)
a88e07c8d0d5 tuned names and optimized comparison order
nipkow
parents: 61513
diff changeset
    39
      | Up\<^sub>i l1 c l2 => Up\<^sub>i (Node2 l1 c l2) a (Node2 m b r)
a88e07c8d0d5 tuned names and optimized comparison order
nipkow
parents: 61513
diff changeset
    40
    else
a88e07c8d0d5 tuned names and optimized comparison order
nipkow
parents: 61513
diff changeset
    41
    if x > b then
a88e07c8d0d5 tuned names and optimized comparison order
nipkow
parents: 61513
diff changeset
    42
      case ins x r of
a88e07c8d0d5 tuned names and optimized comparison order
nipkow
parents: 61513
diff changeset
    43
        T\<^sub>i r' => T\<^sub>i (Node3 l a m b r')
a88e07c8d0d5 tuned names and optimized comparison order
nipkow
parents: 61513
diff changeset
    44
      | Up\<^sub>i r1 c r2 => Up\<^sub>i (Node2 l a m) b (Node2 r1 c r2)
a88e07c8d0d5 tuned names and optimized comparison order
nipkow
parents: 61513
diff changeset
    45
    else
a88e07c8d0d5 tuned names and optimized comparison order
nipkow
parents: 61513
diff changeset
    46
    if x=a \<or> x = b then T\<^sub>i (Node3 l a m b r)
a88e07c8d0d5 tuned names and optimized comparison order
nipkow
parents: 61513
diff changeset
    47
    else
a88e07c8d0d5 tuned names and optimized comparison order
nipkow
parents: 61513
diff changeset
    48
      case ins x m of
a88e07c8d0d5 tuned names and optimized comparison order
nipkow
parents: 61513
diff changeset
    49
        T\<^sub>i m' => T\<^sub>i (Node3 l a m' b r)
a88e07c8d0d5 tuned names and optimized comparison order
nipkow
parents: 61513
diff changeset
    50
      | Up\<^sub>i m1 c m2 => Up\<^sub>i (Node2 l a m1) c (Node2 m2 b r))"
61469
cd82b1023932 added 2-3 trees (simpler and more complete than the version in ex/Tree23)
nipkow
parents:
diff changeset
    51
cd82b1023932 added 2-3 trees (simpler and more complete than the version in ex/Tree23)
nipkow
parents:
diff changeset
    52
hide_const insert
cd82b1023932 added 2-3 trees (simpler and more complete than the version in ex/Tree23)
nipkow
parents:
diff changeset
    53
cd82b1023932 added 2-3 trees (simpler and more complete than the version in ex/Tree23)
nipkow
parents:
diff changeset
    54
definition insert :: "'a::linorder \<Rightarrow> 'a tree23 \<Rightarrow> 'a tree23" where
61534
a88e07c8d0d5 tuned names and optimized comparison order
nipkow
parents: 61513
diff changeset
    55
"insert x t = tree\<^sub>i(ins x t)"
61469
cd82b1023932 added 2-3 trees (simpler and more complete than the version in ex/Tree23)
nipkow
parents:
diff changeset
    56
cd82b1023932 added 2-3 trees (simpler and more complete than the version in ex/Tree23)
nipkow
parents:
diff changeset
    57
datatype 'a up\<^sub>d = T\<^sub>d "'a tree23" | Up\<^sub>d "'a tree23"
cd82b1023932 added 2-3 trees (simpler and more complete than the version in ex/Tree23)
nipkow
parents:
diff changeset
    58
cd82b1023932 added 2-3 trees (simpler and more complete than the version in ex/Tree23)
nipkow
parents:
diff changeset
    59
fun tree\<^sub>d :: "'a up\<^sub>d \<Rightarrow> 'a tree23" where
cd82b1023932 added 2-3 trees (simpler and more complete than the version in ex/Tree23)
nipkow
parents:
diff changeset
    60
"tree\<^sub>d (T\<^sub>d x) = x" |
cd82b1023932 added 2-3 trees (simpler and more complete than the version in ex/Tree23)
nipkow
parents:
diff changeset
    61
"tree\<^sub>d (Up\<^sub>d x) = x"
cd82b1023932 added 2-3 trees (simpler and more complete than the version in ex/Tree23)
nipkow
parents:
diff changeset
    62
cd82b1023932 added 2-3 trees (simpler and more complete than the version in ex/Tree23)
nipkow
parents:
diff changeset
    63
(* Variation: return None to signal no-change *)
cd82b1023932 added 2-3 trees (simpler and more complete than the version in ex/Tree23)
nipkow
parents:
diff changeset
    64
cd82b1023932 added 2-3 trees (simpler and more complete than the version in ex/Tree23)
nipkow
parents:
diff changeset
    65
fun node21 :: "'a up\<^sub>d \<Rightarrow> 'a \<Rightarrow> 'a tree23 \<Rightarrow> 'a up\<^sub>d" where
cd82b1023932 added 2-3 trees (simpler and more complete than the version in ex/Tree23)
nipkow
parents:
diff changeset
    66
"node21 (T\<^sub>d t1) a t2 = T\<^sub>d(Node2 t1 a t2)" |
cd82b1023932 added 2-3 trees (simpler and more complete than the version in ex/Tree23)
nipkow
parents:
diff changeset
    67
"node21 (Up\<^sub>d t1) a (Node2 t2 b t3) = Up\<^sub>d(Node3 t1 a t2 b t3)" |
cd82b1023932 added 2-3 trees (simpler and more complete than the version in ex/Tree23)
nipkow
parents:
diff changeset
    68
"node21 (Up\<^sub>d t1) a (Node3 t2 b t3 c t4) = T\<^sub>d(Node2 (Node2 t1 a t2) b (Node2 t3 c t4))"
cd82b1023932 added 2-3 trees (simpler and more complete than the version in ex/Tree23)
nipkow
parents:
diff changeset
    69
cd82b1023932 added 2-3 trees (simpler and more complete than the version in ex/Tree23)
nipkow
parents:
diff changeset
    70
fun node22 :: "'a tree23 \<Rightarrow> 'a \<Rightarrow> 'a up\<^sub>d \<Rightarrow> 'a up\<^sub>d" where
cd82b1023932 added 2-3 trees (simpler and more complete than the version in ex/Tree23)
nipkow
parents:
diff changeset
    71
"node22 t1 a (T\<^sub>d t2) = T\<^sub>d(Node2 t1 a t2)" |
cd82b1023932 added 2-3 trees (simpler and more complete than the version in ex/Tree23)
nipkow
parents:
diff changeset
    72
"node22 (Node2 t1 b t2) a (Up\<^sub>d t3) = Up\<^sub>d(Node3 t1 b t2 a t3)" |
cd82b1023932 added 2-3 trees (simpler and more complete than the version in ex/Tree23)
nipkow
parents:
diff changeset
    73
"node22 (Node3 t1 b t2 c t3) a (Up\<^sub>d t4) = T\<^sub>d(Node2 (Node2 t1 b t2) c (Node2 t3 a t4))"
cd82b1023932 added 2-3 trees (simpler and more complete than the version in ex/Tree23)
nipkow
parents:
diff changeset
    74
cd82b1023932 added 2-3 trees (simpler and more complete than the version in ex/Tree23)
nipkow
parents:
diff changeset
    75
fun node31 :: "'a up\<^sub>d \<Rightarrow> 'a \<Rightarrow> 'a tree23 \<Rightarrow> 'a \<Rightarrow> 'a tree23 \<Rightarrow> 'a up\<^sub>d" where
cd82b1023932 added 2-3 trees (simpler and more complete than the version in ex/Tree23)
nipkow
parents:
diff changeset
    76
"node31 (T\<^sub>d t1) a t2 b t3 = T\<^sub>d(Node3 t1 a t2 b t3)" |
cd82b1023932 added 2-3 trees (simpler and more complete than the version in ex/Tree23)
nipkow
parents:
diff changeset
    77
"node31 (Up\<^sub>d t1) a (Node2 t2 b t3) c t4 = T\<^sub>d(Node2 (Node3 t1 a t2 b t3) c t4)" |
cd82b1023932 added 2-3 trees (simpler and more complete than the version in ex/Tree23)
nipkow
parents:
diff changeset
    78
"node31 (Up\<^sub>d t1) a (Node3 t2 b t3 c t4) d t5 = T\<^sub>d(Node3 (Node2 t1 a t2) b (Node2 t3 c t4) d t5)"
cd82b1023932 added 2-3 trees (simpler and more complete than the version in ex/Tree23)
nipkow
parents:
diff changeset
    79
cd82b1023932 added 2-3 trees (simpler and more complete than the version in ex/Tree23)
nipkow
parents:
diff changeset
    80
fun node32 :: "'a tree23 \<Rightarrow> 'a \<Rightarrow> 'a up\<^sub>d \<Rightarrow> 'a \<Rightarrow> 'a tree23 \<Rightarrow> 'a up\<^sub>d" where
cd82b1023932 added 2-3 trees (simpler and more complete than the version in ex/Tree23)
nipkow
parents:
diff changeset
    81
"node32 t1 a (T\<^sub>d t2) b t3 = T\<^sub>d(Node3 t1 a t2 b t3)" |
cd82b1023932 added 2-3 trees (simpler and more complete than the version in ex/Tree23)
nipkow
parents:
diff changeset
    82
"node32 t1 a (Up\<^sub>d t2) b (Node2 t3 c t4) = T\<^sub>d(Node2 t1 a (Node3 t2 b t3 c t4))" |
cd82b1023932 added 2-3 trees (simpler and more complete than the version in ex/Tree23)
nipkow
parents:
diff changeset
    83
"node32 t1 a (Up\<^sub>d t2) b (Node3 t3 c t4 d t5) = T\<^sub>d(Node3 t1 a (Node2 t2 b t3) c (Node2 t4 d t5))"
cd82b1023932 added 2-3 trees (simpler and more complete than the version in ex/Tree23)
nipkow
parents:
diff changeset
    84
cd82b1023932 added 2-3 trees (simpler and more complete than the version in ex/Tree23)
nipkow
parents:
diff changeset
    85
fun node33 :: "'a tree23 \<Rightarrow> 'a \<Rightarrow> 'a tree23 \<Rightarrow> 'a \<Rightarrow> 'a up\<^sub>d \<Rightarrow> 'a up\<^sub>d" where
cd82b1023932 added 2-3 trees (simpler and more complete than the version in ex/Tree23)
nipkow
parents:
diff changeset
    86
"node33 l a m b (T\<^sub>d r) = T\<^sub>d(Node3 l a m b r)" |
cd82b1023932 added 2-3 trees (simpler and more complete than the version in ex/Tree23)
nipkow
parents:
diff changeset
    87
"node33 t1 a (Node2 t2 b t3) c (Up\<^sub>d t4) = T\<^sub>d(Node2 t1 a (Node3 t2 b t3 c t4))" |
cd82b1023932 added 2-3 trees (simpler and more complete than the version in ex/Tree23)
nipkow
parents:
diff changeset
    88
"node33 t1 a (Node3 t2 b t3 c t4) d (Up\<^sub>d t5) = T\<^sub>d(Node3 t1 a (Node2 t2 b t3) c (Node2 t4 d t5))"
cd82b1023932 added 2-3 trees (simpler and more complete than the version in ex/Tree23)
nipkow
parents:
diff changeset
    89
cd82b1023932 added 2-3 trees (simpler and more complete than the version in ex/Tree23)
nipkow
parents:
diff changeset
    90
fun del_min :: "'a tree23 \<Rightarrow> 'a * 'a up\<^sub>d" where
cd82b1023932 added 2-3 trees (simpler and more complete than the version in ex/Tree23)
nipkow
parents:
diff changeset
    91
"del_min (Node2 Leaf a Leaf) = (a, Up\<^sub>d Leaf)" |
cd82b1023932 added 2-3 trees (simpler and more complete than the version in ex/Tree23)
nipkow
parents:
diff changeset
    92
"del_min (Node3 Leaf a Leaf b Leaf) = (a, T\<^sub>d(Node2 Leaf b Leaf))" |
cd82b1023932 added 2-3 trees (simpler and more complete than the version in ex/Tree23)
nipkow
parents:
diff changeset
    93
"del_min (Node2 l a r) = (let (x,l') = del_min l in (x, node21 l' a r))" |
cd82b1023932 added 2-3 trees (simpler and more complete than the version in ex/Tree23)
nipkow
parents:
diff changeset
    94
"del_min (Node3 l a m b r) = (let (x,l') = del_min l in (x, node31 l' a m b r))"
cd82b1023932 added 2-3 trees (simpler and more complete than the version in ex/Tree23)
nipkow
parents:
diff changeset
    95
cd82b1023932 added 2-3 trees (simpler and more complete than the version in ex/Tree23)
nipkow
parents:
diff changeset
    96
fun del :: "'a::linorder \<Rightarrow> 'a tree23 \<Rightarrow> 'a up\<^sub>d"
cd82b1023932 added 2-3 trees (simpler and more complete than the version in ex/Tree23)
nipkow
parents:
diff changeset
    97
where
61534
a88e07c8d0d5 tuned names and optimized comparison order
nipkow
parents: 61513
diff changeset
    98
"del x Leaf = T\<^sub>d Leaf" |
a88e07c8d0d5 tuned names and optimized comparison order
nipkow
parents: 61513
diff changeset
    99
"del x (Node2 Leaf a Leaf) = (if x = a then Up\<^sub>d Leaf else T\<^sub>d(Node2 Leaf a Leaf))" |
a88e07c8d0d5 tuned names and optimized comparison order
nipkow
parents: 61513
diff changeset
   100
"del x (Node3 Leaf a Leaf b Leaf) = T\<^sub>d(if x = a then Node2 Leaf b Leaf
a88e07c8d0d5 tuned names and optimized comparison order
nipkow
parents: 61513
diff changeset
   101
  else if x = b then Node2 Leaf a Leaf else Node3 Leaf a Leaf b Leaf)" |
a88e07c8d0d5 tuned names and optimized comparison order
nipkow
parents: 61513
diff changeset
   102
"del x (Node2 l a r) = (if x<a then node21 (del x l) a r else
a88e07c8d0d5 tuned names and optimized comparison order
nipkow
parents: 61513
diff changeset
   103
  if x > a then node22 l a (del x r) else
61469
cd82b1023932 added 2-3 trees (simpler and more complete than the version in ex/Tree23)
nipkow
parents:
diff changeset
   104
  let (a',t) = del_min r in node22 l a' t)" |
61534
a88e07c8d0d5 tuned names and optimized comparison order
nipkow
parents: 61513
diff changeset
   105
"del x (Node3 l a m b r) = (if x<a then node31 (del x l) a m b r else
a88e07c8d0d5 tuned names and optimized comparison order
nipkow
parents: 61513
diff changeset
   106
  if x = a then let (a',m') = del_min m in node32 l a' m' b r else
a88e07c8d0d5 tuned names and optimized comparison order
nipkow
parents: 61513
diff changeset
   107
  if x < b then node32 l a (del x m) b r else
a88e07c8d0d5 tuned names and optimized comparison order
nipkow
parents: 61513
diff changeset
   108
  if x = b then let (b',r') = del_min r in node33 l a m b' r'
a88e07c8d0d5 tuned names and optimized comparison order
nipkow
parents: 61513
diff changeset
   109
  else node33 l a m b (del x r))"
61469
cd82b1023932 added 2-3 trees (simpler and more complete than the version in ex/Tree23)
nipkow
parents:
diff changeset
   110
cd82b1023932 added 2-3 trees (simpler and more complete than the version in ex/Tree23)
nipkow
parents:
diff changeset
   111
definition delete :: "'a::linorder \<Rightarrow> 'a tree23 \<Rightarrow> 'a tree23" where
61534
a88e07c8d0d5 tuned names and optimized comparison order
nipkow
parents: 61513
diff changeset
   112
"delete x t = tree\<^sub>d(del x t)"
61469
cd82b1023932 added 2-3 trees (simpler and more complete than the version in ex/Tree23)
nipkow
parents:
diff changeset
   113
cd82b1023932 added 2-3 trees (simpler and more complete than the version in ex/Tree23)
nipkow
parents:
diff changeset
   114
cd82b1023932 added 2-3 trees (simpler and more complete than the version in ex/Tree23)
nipkow
parents:
diff changeset
   115
subsection "Functional Correctness"
cd82b1023932 added 2-3 trees (simpler and more complete than the version in ex/Tree23)
nipkow
parents:
diff changeset
   116
cd82b1023932 added 2-3 trees (simpler and more complete than the version in ex/Tree23)
nipkow
parents:
diff changeset
   117
cd82b1023932 added 2-3 trees (simpler and more complete than the version in ex/Tree23)
nipkow
parents:
diff changeset
   118
subsubsection "Proofs for isin"
cd82b1023932 added 2-3 trees (simpler and more complete than the version in ex/Tree23)
nipkow
parents:
diff changeset
   119
cd82b1023932 added 2-3 trees (simpler and more complete than the version in ex/Tree23)
nipkow
parents:
diff changeset
   120
lemma "sorted(inorder t) \<Longrightarrow> isin t x = (x \<in> elems (inorder t))"
cd82b1023932 added 2-3 trees (simpler and more complete than the version in ex/Tree23)
nipkow
parents:
diff changeset
   121
by (induction t) (auto simp: elems_simps1)
cd82b1023932 added 2-3 trees (simpler and more complete than the version in ex/Tree23)
nipkow
parents:
diff changeset
   122
cd82b1023932 added 2-3 trees (simpler and more complete than the version in ex/Tree23)
nipkow
parents:
diff changeset
   123
lemma isin_set: "sorted(inorder t) \<Longrightarrow> isin t x = (x \<in> elems (inorder t))"
cd82b1023932 added 2-3 trees (simpler and more complete than the version in ex/Tree23)
nipkow
parents:
diff changeset
   124
by (induction t) (auto simp: elems_simps2)
cd82b1023932 added 2-3 trees (simpler and more complete than the version in ex/Tree23)
nipkow
parents:
diff changeset
   125
cd82b1023932 added 2-3 trees (simpler and more complete than the version in ex/Tree23)
nipkow
parents:
diff changeset
   126
cd82b1023932 added 2-3 trees (simpler and more complete than the version in ex/Tree23)
nipkow
parents:
diff changeset
   127
subsubsection "Proofs for insert"
cd82b1023932 added 2-3 trees (simpler and more complete than the version in ex/Tree23)
nipkow
parents:
diff changeset
   128
cd82b1023932 added 2-3 trees (simpler and more complete than the version in ex/Tree23)
nipkow
parents:
diff changeset
   129
lemma inorder_ins:
cd82b1023932 added 2-3 trees (simpler and more complete than the version in ex/Tree23)
nipkow
parents:
diff changeset
   130
  "sorted(inorder t) \<Longrightarrow> inorder(tree\<^sub>i(ins x t)) = ins_list x (inorder t)"
61534
a88e07c8d0d5 tuned names and optimized comparison order
nipkow
parents: 61513
diff changeset
   131
by(induction t) (auto simp: ins_list_simps split: up\<^sub>i.splits) (* 38 secs in 2015 *)
61469
cd82b1023932 added 2-3 trees (simpler and more complete than the version in ex/Tree23)
nipkow
parents:
diff changeset
   132
cd82b1023932 added 2-3 trees (simpler and more complete than the version in ex/Tree23)
nipkow
parents:
diff changeset
   133
lemma inorder_insert:
cd82b1023932 added 2-3 trees (simpler and more complete than the version in ex/Tree23)
nipkow
parents:
diff changeset
   134
  "sorted(inorder t) \<Longrightarrow> inorder(insert a t) = ins_list a (inorder t)"
cd82b1023932 added 2-3 trees (simpler and more complete than the version in ex/Tree23)
nipkow
parents:
diff changeset
   135
by(simp add: insert_def inorder_ins)
cd82b1023932 added 2-3 trees (simpler and more complete than the version in ex/Tree23)
nipkow
parents:
diff changeset
   136
cd82b1023932 added 2-3 trees (simpler and more complete than the version in ex/Tree23)
nipkow
parents:
diff changeset
   137
cd82b1023932 added 2-3 trees (simpler and more complete than the version in ex/Tree23)
nipkow
parents:
diff changeset
   138
subsubsection "Proofs for delete"
cd82b1023932 added 2-3 trees (simpler and more complete than the version in ex/Tree23)
nipkow
parents:
diff changeset
   139
cd82b1023932 added 2-3 trees (simpler and more complete than the version in ex/Tree23)
nipkow
parents:
diff changeset
   140
lemma inorder_node21: "height r > 0 \<Longrightarrow>
cd82b1023932 added 2-3 trees (simpler and more complete than the version in ex/Tree23)
nipkow
parents:
diff changeset
   141
  inorder (tree\<^sub>d (node21 l' a r)) = inorder (tree\<^sub>d l') @ a # inorder r"
cd82b1023932 added 2-3 trees (simpler and more complete than the version in ex/Tree23)
nipkow
parents:
diff changeset
   142
by(induct l' a r rule: node21.induct) auto
cd82b1023932 added 2-3 trees (simpler and more complete than the version in ex/Tree23)
nipkow
parents:
diff changeset
   143
cd82b1023932 added 2-3 trees (simpler and more complete than the version in ex/Tree23)
nipkow
parents:
diff changeset
   144
lemma inorder_node22: "height l > 0 \<Longrightarrow>
cd82b1023932 added 2-3 trees (simpler and more complete than the version in ex/Tree23)
nipkow
parents:
diff changeset
   145
  inorder (tree\<^sub>d (node22 l a r')) = inorder l @ a # inorder (tree\<^sub>d r')"
cd82b1023932 added 2-3 trees (simpler and more complete than the version in ex/Tree23)
nipkow
parents:
diff changeset
   146
by(induct l a r' rule: node22.induct) auto
cd82b1023932 added 2-3 trees (simpler and more complete than the version in ex/Tree23)
nipkow
parents:
diff changeset
   147
cd82b1023932 added 2-3 trees (simpler and more complete than the version in ex/Tree23)
nipkow
parents:
diff changeset
   148
lemma inorder_node31: "height m > 0 \<Longrightarrow>
cd82b1023932 added 2-3 trees (simpler and more complete than the version in ex/Tree23)
nipkow
parents:
diff changeset
   149
  inorder (tree\<^sub>d (node31 l' a m b r)) = inorder (tree\<^sub>d l') @ a # inorder m @ b # inorder r"
cd82b1023932 added 2-3 trees (simpler and more complete than the version in ex/Tree23)
nipkow
parents:
diff changeset
   150
by(induct l' a m b r rule: node31.induct) auto
cd82b1023932 added 2-3 trees (simpler and more complete than the version in ex/Tree23)
nipkow
parents:
diff changeset
   151
cd82b1023932 added 2-3 trees (simpler and more complete than the version in ex/Tree23)
nipkow
parents:
diff changeset
   152
lemma inorder_node32: "height r > 0 \<Longrightarrow>
cd82b1023932 added 2-3 trees (simpler and more complete than the version in ex/Tree23)
nipkow
parents:
diff changeset
   153
  inorder (tree\<^sub>d (node32 l a m' b r)) = inorder l @ a # inorder (tree\<^sub>d m') @ b # inorder r"
cd82b1023932 added 2-3 trees (simpler and more complete than the version in ex/Tree23)
nipkow
parents:
diff changeset
   154
by(induct l a m' b r rule: node32.induct) auto
cd82b1023932 added 2-3 trees (simpler and more complete than the version in ex/Tree23)
nipkow
parents:
diff changeset
   155
cd82b1023932 added 2-3 trees (simpler and more complete than the version in ex/Tree23)
nipkow
parents:
diff changeset
   156
lemma inorder_node33: "height m > 0 \<Longrightarrow>
cd82b1023932 added 2-3 trees (simpler and more complete than the version in ex/Tree23)
nipkow
parents:
diff changeset
   157
  inorder (tree\<^sub>d (node33 l a m b r')) = inorder l @ a # inorder m @ b # inorder (tree\<^sub>d r')"
cd82b1023932 added 2-3 trees (simpler and more complete than the version in ex/Tree23)
nipkow
parents:
diff changeset
   158
by(induct l a m b r' rule: node33.induct) auto
cd82b1023932 added 2-3 trees (simpler and more complete than the version in ex/Tree23)
nipkow
parents:
diff changeset
   159
cd82b1023932 added 2-3 trees (simpler and more complete than the version in ex/Tree23)
nipkow
parents:
diff changeset
   160
lemmas inorder_nodes = inorder_node21 inorder_node22
cd82b1023932 added 2-3 trees (simpler and more complete than the version in ex/Tree23)
nipkow
parents:
diff changeset
   161
  inorder_node31 inorder_node32 inorder_node33
cd82b1023932 added 2-3 trees (simpler and more complete than the version in ex/Tree23)
nipkow
parents:
diff changeset
   162
cd82b1023932 added 2-3 trees (simpler and more complete than the version in ex/Tree23)
nipkow
parents:
diff changeset
   163
lemma del_minD:
cd82b1023932 added 2-3 trees (simpler and more complete than the version in ex/Tree23)
nipkow
parents:
diff changeset
   164
  "del_min t = (x,t') \<Longrightarrow> bal t \<Longrightarrow> height t > 0 \<Longrightarrow>
cd82b1023932 added 2-3 trees (simpler and more complete than the version in ex/Tree23)
nipkow
parents:
diff changeset
   165
  x # inorder(tree\<^sub>d t') = inorder t"
cd82b1023932 added 2-3 trees (simpler and more complete than the version in ex/Tree23)
nipkow
parents:
diff changeset
   166
by(induction t arbitrary: t' rule: del_min.induct)
61513
nipkow
parents: 61469
diff changeset
   167
  (auto simp: inorder_nodes split: prod.splits)
61469
cd82b1023932 added 2-3 trees (simpler and more complete than the version in ex/Tree23)
nipkow
parents:
diff changeset
   168
cd82b1023932 added 2-3 trees (simpler and more complete than the version in ex/Tree23)
nipkow
parents:
diff changeset
   169
lemma inorder_del: "\<lbrakk> bal t ; sorted(inorder t) \<rbrakk> \<Longrightarrow>
cd82b1023932 added 2-3 trees (simpler and more complete than the version in ex/Tree23)
nipkow
parents:
diff changeset
   170
  inorder(tree\<^sub>d (del x t)) = del_list x (inorder t)"
cd82b1023932 added 2-3 trees (simpler and more complete than the version in ex/Tree23)
nipkow
parents:
diff changeset
   171
by(induction t rule: del.induct)
61513
nipkow
parents: 61469
diff changeset
   172
  (auto simp: del_list_simps inorder_nodes del_minD split: prod.splits)
61469
cd82b1023932 added 2-3 trees (simpler and more complete than the version in ex/Tree23)
nipkow
parents:
diff changeset
   173
cd82b1023932 added 2-3 trees (simpler and more complete than the version in ex/Tree23)
nipkow
parents:
diff changeset
   174
lemma inorder_delete: "\<lbrakk> bal t ; sorted(inorder t) \<rbrakk> \<Longrightarrow>
cd82b1023932 added 2-3 trees (simpler and more complete than the version in ex/Tree23)
nipkow
parents:
diff changeset
   175
  inorder(delete x t) = del_list x (inorder t)"
cd82b1023932 added 2-3 trees (simpler and more complete than the version in ex/Tree23)
nipkow
parents:
diff changeset
   176
by(simp add: delete_def inorder_del)
cd82b1023932 added 2-3 trees (simpler and more complete than the version in ex/Tree23)
nipkow
parents:
diff changeset
   177
cd82b1023932 added 2-3 trees (simpler and more complete than the version in ex/Tree23)
nipkow
parents:
diff changeset
   178
cd82b1023932 added 2-3 trees (simpler and more complete than the version in ex/Tree23)
nipkow
parents:
diff changeset
   179
subsection \<open>Balancedness\<close>
cd82b1023932 added 2-3 trees (simpler and more complete than the version in ex/Tree23)
nipkow
parents:
diff changeset
   180
cd82b1023932 added 2-3 trees (simpler and more complete than the version in ex/Tree23)
nipkow
parents:
diff changeset
   181
cd82b1023932 added 2-3 trees (simpler and more complete than the version in ex/Tree23)
nipkow
parents:
diff changeset
   182
subsubsection "Proofs for insert"
cd82b1023932 added 2-3 trees (simpler and more complete than the version in ex/Tree23)
nipkow
parents:
diff changeset
   183
cd82b1023932 added 2-3 trees (simpler and more complete than the version in ex/Tree23)
nipkow
parents:
diff changeset
   184
text{* First a standard proof that @{const ins} preserves @{const bal}. *}
cd82b1023932 added 2-3 trees (simpler and more complete than the version in ex/Tree23)
nipkow
parents:
diff changeset
   185
cd82b1023932 added 2-3 trees (simpler and more complete than the version in ex/Tree23)
nipkow
parents:
diff changeset
   186
instantiation up\<^sub>i :: (type)height
cd82b1023932 added 2-3 trees (simpler and more complete than the version in ex/Tree23)
nipkow
parents:
diff changeset
   187
begin
cd82b1023932 added 2-3 trees (simpler and more complete than the version in ex/Tree23)
nipkow
parents:
diff changeset
   188
cd82b1023932 added 2-3 trees (simpler and more complete than the version in ex/Tree23)
nipkow
parents:
diff changeset
   189
fun height_up\<^sub>i :: "'a up\<^sub>i \<Rightarrow> nat" where
cd82b1023932 added 2-3 trees (simpler and more complete than the version in ex/Tree23)
nipkow
parents:
diff changeset
   190
"height (T\<^sub>i t) = height t" |
cd82b1023932 added 2-3 trees (simpler and more complete than the version in ex/Tree23)
nipkow
parents:
diff changeset
   191
"height (Up\<^sub>i l a r) = height l"
cd82b1023932 added 2-3 trees (simpler and more complete than the version in ex/Tree23)
nipkow
parents:
diff changeset
   192
cd82b1023932 added 2-3 trees (simpler and more complete than the version in ex/Tree23)
nipkow
parents:
diff changeset
   193
instance ..
cd82b1023932 added 2-3 trees (simpler and more complete than the version in ex/Tree23)
nipkow
parents:
diff changeset
   194
cd82b1023932 added 2-3 trees (simpler and more complete than the version in ex/Tree23)
nipkow
parents:
diff changeset
   195
end
cd82b1023932 added 2-3 trees (simpler and more complete than the version in ex/Tree23)
nipkow
parents:
diff changeset
   196
cd82b1023932 added 2-3 trees (simpler and more complete than the version in ex/Tree23)
nipkow
parents:
diff changeset
   197
lemma bal_ins: "bal t \<Longrightarrow> bal (tree\<^sub>i(ins a t)) \<and> height(ins a t) = height t"
61534
a88e07c8d0d5 tuned names and optimized comparison order
nipkow
parents: 61513
diff changeset
   198
by (induct t) (auto split: up\<^sub>i.split) (* 87 secs in 2015 *)
61469
cd82b1023932 added 2-3 trees (simpler and more complete than the version in ex/Tree23)
nipkow
parents:
diff changeset
   199
cd82b1023932 added 2-3 trees (simpler and more complete than the version in ex/Tree23)
nipkow
parents:
diff changeset
   200
text{* Now an alternative proof (by Brian Huffman) that runs faster because
cd82b1023932 added 2-3 trees (simpler and more complete than the version in ex/Tree23)
nipkow
parents:
diff changeset
   201
two properties (balance and height) are combined in one predicate. *}
cd82b1023932 added 2-3 trees (simpler and more complete than the version in ex/Tree23)
nipkow
parents:
diff changeset
   202
cd82b1023932 added 2-3 trees (simpler and more complete than the version in ex/Tree23)
nipkow
parents:
diff changeset
   203
inductive full :: "nat \<Rightarrow> 'a tree23 \<Rightarrow> bool" where
cd82b1023932 added 2-3 trees (simpler and more complete than the version in ex/Tree23)
nipkow
parents:
diff changeset
   204
"full 0 Leaf" |
cd82b1023932 added 2-3 trees (simpler and more complete than the version in ex/Tree23)
nipkow
parents:
diff changeset
   205
"\<lbrakk>full n l; full n r\<rbrakk> \<Longrightarrow> full (Suc n) (Node2 l p r)" |
cd82b1023932 added 2-3 trees (simpler and more complete than the version in ex/Tree23)
nipkow
parents:
diff changeset
   206
"\<lbrakk>full n l; full n m; full n r\<rbrakk> \<Longrightarrow> full (Suc n) (Node3 l p m q r)"
cd82b1023932 added 2-3 trees (simpler and more complete than the version in ex/Tree23)
nipkow
parents:
diff changeset
   207
cd82b1023932 added 2-3 trees (simpler and more complete than the version in ex/Tree23)
nipkow
parents:
diff changeset
   208
inductive_cases full_elims:
cd82b1023932 added 2-3 trees (simpler and more complete than the version in ex/Tree23)
nipkow
parents:
diff changeset
   209
  "full n Leaf"
cd82b1023932 added 2-3 trees (simpler and more complete than the version in ex/Tree23)
nipkow
parents:
diff changeset
   210
  "full n (Node2 l p r)"
cd82b1023932 added 2-3 trees (simpler and more complete than the version in ex/Tree23)
nipkow
parents:
diff changeset
   211
  "full n (Node3 l p m q r)"
cd82b1023932 added 2-3 trees (simpler and more complete than the version in ex/Tree23)
nipkow
parents:
diff changeset
   212
cd82b1023932 added 2-3 trees (simpler and more complete than the version in ex/Tree23)
nipkow
parents:
diff changeset
   213
inductive_cases full_0_elim: "full 0 t"
cd82b1023932 added 2-3 trees (simpler and more complete than the version in ex/Tree23)
nipkow
parents:
diff changeset
   214
inductive_cases full_Suc_elim: "full (Suc n) t"
cd82b1023932 added 2-3 trees (simpler and more complete than the version in ex/Tree23)
nipkow
parents:
diff changeset
   215
cd82b1023932 added 2-3 trees (simpler and more complete than the version in ex/Tree23)
nipkow
parents:
diff changeset
   216
lemma full_0_iff [simp]: "full 0 t \<longleftrightarrow> t = Leaf"
cd82b1023932 added 2-3 trees (simpler and more complete than the version in ex/Tree23)
nipkow
parents:
diff changeset
   217
  by (auto elim: full_0_elim intro: full.intros)
cd82b1023932 added 2-3 trees (simpler and more complete than the version in ex/Tree23)
nipkow
parents:
diff changeset
   218
cd82b1023932 added 2-3 trees (simpler and more complete than the version in ex/Tree23)
nipkow
parents:
diff changeset
   219
lemma full_Leaf_iff [simp]: "full n Leaf \<longleftrightarrow> n = 0"
cd82b1023932 added 2-3 trees (simpler and more complete than the version in ex/Tree23)
nipkow
parents:
diff changeset
   220
  by (auto elim: full_elims intro: full.intros)
cd82b1023932 added 2-3 trees (simpler and more complete than the version in ex/Tree23)
nipkow
parents:
diff changeset
   221
cd82b1023932 added 2-3 trees (simpler and more complete than the version in ex/Tree23)
nipkow
parents:
diff changeset
   222
lemma full_Suc_Node2_iff [simp]:
cd82b1023932 added 2-3 trees (simpler and more complete than the version in ex/Tree23)
nipkow
parents:
diff changeset
   223
  "full (Suc n) (Node2 l p r) \<longleftrightarrow> full n l \<and> full n r"
cd82b1023932 added 2-3 trees (simpler and more complete than the version in ex/Tree23)
nipkow
parents:
diff changeset
   224
  by (auto elim: full_elims intro: full.intros)
cd82b1023932 added 2-3 trees (simpler and more complete than the version in ex/Tree23)
nipkow
parents:
diff changeset
   225
cd82b1023932 added 2-3 trees (simpler and more complete than the version in ex/Tree23)
nipkow
parents:
diff changeset
   226
lemma full_Suc_Node3_iff [simp]:
cd82b1023932 added 2-3 trees (simpler and more complete than the version in ex/Tree23)
nipkow
parents:
diff changeset
   227
  "full (Suc n) (Node3 l p m q r) \<longleftrightarrow> full n l \<and> full n m \<and> full n r"
cd82b1023932 added 2-3 trees (simpler and more complete than the version in ex/Tree23)
nipkow
parents:
diff changeset
   228
  by (auto elim: full_elims intro: full.intros)
cd82b1023932 added 2-3 trees (simpler and more complete than the version in ex/Tree23)
nipkow
parents:
diff changeset
   229
cd82b1023932 added 2-3 trees (simpler and more complete than the version in ex/Tree23)
nipkow
parents:
diff changeset
   230
lemma full_imp_height: "full n t \<Longrightarrow> height t = n"
cd82b1023932 added 2-3 trees (simpler and more complete than the version in ex/Tree23)
nipkow
parents:
diff changeset
   231
  by (induct set: full, simp_all)
cd82b1023932 added 2-3 trees (simpler and more complete than the version in ex/Tree23)
nipkow
parents:
diff changeset
   232
cd82b1023932 added 2-3 trees (simpler and more complete than the version in ex/Tree23)
nipkow
parents:
diff changeset
   233
lemma full_imp_bal: "full n t \<Longrightarrow> bal t"
cd82b1023932 added 2-3 trees (simpler and more complete than the version in ex/Tree23)
nipkow
parents:
diff changeset
   234
  by (induct set: full, auto dest: full_imp_height)
cd82b1023932 added 2-3 trees (simpler and more complete than the version in ex/Tree23)
nipkow
parents:
diff changeset
   235
cd82b1023932 added 2-3 trees (simpler and more complete than the version in ex/Tree23)
nipkow
parents:
diff changeset
   236
lemma bal_imp_full: "bal t \<Longrightarrow> full (height t) t"
cd82b1023932 added 2-3 trees (simpler and more complete than the version in ex/Tree23)
nipkow
parents:
diff changeset
   237
  by (induct t, simp_all)
cd82b1023932 added 2-3 trees (simpler and more complete than the version in ex/Tree23)
nipkow
parents:
diff changeset
   238
cd82b1023932 added 2-3 trees (simpler and more complete than the version in ex/Tree23)
nipkow
parents:
diff changeset
   239
lemma bal_iff_full: "bal t \<longleftrightarrow> (\<exists>n. full n t)"
cd82b1023932 added 2-3 trees (simpler and more complete than the version in ex/Tree23)
nipkow
parents:
diff changeset
   240
  by (auto elim!: bal_imp_full full_imp_bal)
cd82b1023932 added 2-3 trees (simpler and more complete than the version in ex/Tree23)
nipkow
parents:
diff changeset
   241
cd82b1023932 added 2-3 trees (simpler and more complete than the version in ex/Tree23)
nipkow
parents:
diff changeset
   242
text {* The @{const "insert"} function either preserves the height of the
cd82b1023932 added 2-3 trees (simpler and more complete than the version in ex/Tree23)
nipkow
parents:
diff changeset
   243
tree, or increases it by one. The constructor returned by the @{term
cd82b1023932 added 2-3 trees (simpler and more complete than the version in ex/Tree23)
nipkow
parents:
diff changeset
   244
"insert"} function determines which: A return value of the form @{term
cd82b1023932 added 2-3 trees (simpler and more complete than the version in ex/Tree23)
nipkow
parents:
diff changeset
   245
"T\<^sub>i t"} indicates that the height will be the same. A value of the
cd82b1023932 added 2-3 trees (simpler and more complete than the version in ex/Tree23)
nipkow
parents:
diff changeset
   246
form @{term "Up\<^sub>i l p r"} indicates an increase in height. *}
cd82b1023932 added 2-3 trees (simpler and more complete than the version in ex/Tree23)
nipkow
parents:
diff changeset
   247
cd82b1023932 added 2-3 trees (simpler and more complete than the version in ex/Tree23)
nipkow
parents:
diff changeset
   248
fun full\<^sub>i :: "nat \<Rightarrow> 'a up\<^sub>i \<Rightarrow> bool" where
cd82b1023932 added 2-3 trees (simpler and more complete than the version in ex/Tree23)
nipkow
parents:
diff changeset
   249
"full\<^sub>i n (T\<^sub>i t) \<longleftrightarrow> full n t" |
cd82b1023932 added 2-3 trees (simpler and more complete than the version in ex/Tree23)
nipkow
parents:
diff changeset
   250
"full\<^sub>i n (Up\<^sub>i l p r) \<longleftrightarrow> full n l \<and> full n r"
cd82b1023932 added 2-3 trees (simpler and more complete than the version in ex/Tree23)
nipkow
parents:
diff changeset
   251
cd82b1023932 added 2-3 trees (simpler and more complete than the version in ex/Tree23)
nipkow
parents:
diff changeset
   252
lemma full\<^sub>i_ins: "full n t \<Longrightarrow> full\<^sub>i n (ins a t)"
cd82b1023932 added 2-3 trees (simpler and more complete than the version in ex/Tree23)
nipkow
parents:
diff changeset
   253
by (induct rule: full.induct) (auto split: up\<^sub>i.split)
cd82b1023932 added 2-3 trees (simpler and more complete than the version in ex/Tree23)
nipkow
parents:
diff changeset
   254
cd82b1023932 added 2-3 trees (simpler and more complete than the version in ex/Tree23)
nipkow
parents:
diff changeset
   255
text {* The @{const insert} operation preserves balance. *}
cd82b1023932 added 2-3 trees (simpler and more complete than the version in ex/Tree23)
nipkow
parents:
diff changeset
   256
cd82b1023932 added 2-3 trees (simpler and more complete than the version in ex/Tree23)
nipkow
parents:
diff changeset
   257
lemma bal_insert: "bal t \<Longrightarrow> bal (insert a t)"
cd82b1023932 added 2-3 trees (simpler and more complete than the version in ex/Tree23)
nipkow
parents:
diff changeset
   258
unfolding bal_iff_full insert_def
cd82b1023932 added 2-3 trees (simpler and more complete than the version in ex/Tree23)
nipkow
parents:
diff changeset
   259
apply (erule exE)
cd82b1023932 added 2-3 trees (simpler and more complete than the version in ex/Tree23)
nipkow
parents:
diff changeset
   260
apply (drule full\<^sub>i_ins [of _ _ a])
cd82b1023932 added 2-3 trees (simpler and more complete than the version in ex/Tree23)
nipkow
parents:
diff changeset
   261
apply (cases "ins a t")
cd82b1023932 added 2-3 trees (simpler and more complete than the version in ex/Tree23)
nipkow
parents:
diff changeset
   262
apply (auto intro: full.intros)
cd82b1023932 added 2-3 trees (simpler and more complete than the version in ex/Tree23)
nipkow
parents:
diff changeset
   263
done
cd82b1023932 added 2-3 trees (simpler and more complete than the version in ex/Tree23)
nipkow
parents:
diff changeset
   264
cd82b1023932 added 2-3 trees (simpler and more complete than the version in ex/Tree23)
nipkow
parents:
diff changeset
   265
cd82b1023932 added 2-3 trees (simpler and more complete than the version in ex/Tree23)
nipkow
parents:
diff changeset
   266
subsection "Proofs for delete"
cd82b1023932 added 2-3 trees (simpler and more complete than the version in ex/Tree23)
nipkow
parents:
diff changeset
   267
cd82b1023932 added 2-3 trees (simpler and more complete than the version in ex/Tree23)
nipkow
parents:
diff changeset
   268
instantiation up\<^sub>d :: (type)height
cd82b1023932 added 2-3 trees (simpler and more complete than the version in ex/Tree23)
nipkow
parents:
diff changeset
   269
begin
cd82b1023932 added 2-3 trees (simpler and more complete than the version in ex/Tree23)
nipkow
parents:
diff changeset
   270
cd82b1023932 added 2-3 trees (simpler and more complete than the version in ex/Tree23)
nipkow
parents:
diff changeset
   271
fun height_up\<^sub>d :: "'a up\<^sub>d \<Rightarrow> nat" where
cd82b1023932 added 2-3 trees (simpler and more complete than the version in ex/Tree23)
nipkow
parents:
diff changeset
   272
"height (T\<^sub>d t) = height t" |
cd82b1023932 added 2-3 trees (simpler and more complete than the version in ex/Tree23)
nipkow
parents:
diff changeset
   273
"height (Up\<^sub>d t) = height t + 1"
cd82b1023932 added 2-3 trees (simpler and more complete than the version in ex/Tree23)
nipkow
parents:
diff changeset
   274
cd82b1023932 added 2-3 trees (simpler and more complete than the version in ex/Tree23)
nipkow
parents:
diff changeset
   275
instance ..
cd82b1023932 added 2-3 trees (simpler and more complete than the version in ex/Tree23)
nipkow
parents:
diff changeset
   276
cd82b1023932 added 2-3 trees (simpler and more complete than the version in ex/Tree23)
nipkow
parents:
diff changeset
   277
end
cd82b1023932 added 2-3 trees (simpler and more complete than the version in ex/Tree23)
nipkow
parents:
diff changeset
   278
cd82b1023932 added 2-3 trees (simpler and more complete than the version in ex/Tree23)
nipkow
parents:
diff changeset
   279
lemma bal_tree\<^sub>d_node21:
cd82b1023932 added 2-3 trees (simpler and more complete than the version in ex/Tree23)
nipkow
parents:
diff changeset
   280
  "\<lbrakk>bal r; bal (tree\<^sub>d l'); height r = height l' \<rbrakk> \<Longrightarrow> bal (tree\<^sub>d (node21 l' a r))"
cd82b1023932 added 2-3 trees (simpler and more complete than the version in ex/Tree23)
nipkow
parents:
diff changeset
   281
by(induct l' a r rule: node21.induct) auto
cd82b1023932 added 2-3 trees (simpler and more complete than the version in ex/Tree23)
nipkow
parents:
diff changeset
   282
cd82b1023932 added 2-3 trees (simpler and more complete than the version in ex/Tree23)
nipkow
parents:
diff changeset
   283
lemma bal_tree\<^sub>d_node22:
cd82b1023932 added 2-3 trees (simpler and more complete than the version in ex/Tree23)
nipkow
parents:
diff changeset
   284
  "\<lbrakk>bal(tree\<^sub>d r'); bal l; height r' = height l \<rbrakk> \<Longrightarrow> bal (tree\<^sub>d (node22 l a r'))"
cd82b1023932 added 2-3 trees (simpler and more complete than the version in ex/Tree23)
nipkow
parents:
diff changeset
   285
by(induct l a r' rule: node22.induct) auto
cd82b1023932 added 2-3 trees (simpler and more complete than the version in ex/Tree23)
nipkow
parents:
diff changeset
   286
cd82b1023932 added 2-3 trees (simpler and more complete than the version in ex/Tree23)
nipkow
parents:
diff changeset
   287
lemma bal_tree\<^sub>d_node31:
cd82b1023932 added 2-3 trees (simpler and more complete than the version in ex/Tree23)
nipkow
parents:
diff changeset
   288
  "\<lbrakk> bal (tree\<^sub>d l'); bal m; bal r; height l' = height r; height m = height r \<rbrakk>
cd82b1023932 added 2-3 trees (simpler and more complete than the version in ex/Tree23)
nipkow
parents:
diff changeset
   289
  \<Longrightarrow> bal (tree\<^sub>d (node31 l' a m b r))"
cd82b1023932 added 2-3 trees (simpler and more complete than the version in ex/Tree23)
nipkow
parents:
diff changeset
   290
by(induct l' a m b r rule: node31.induct) auto
cd82b1023932 added 2-3 trees (simpler and more complete than the version in ex/Tree23)
nipkow
parents:
diff changeset
   291
cd82b1023932 added 2-3 trees (simpler and more complete than the version in ex/Tree23)
nipkow
parents:
diff changeset
   292
lemma bal_tree\<^sub>d_node32:
cd82b1023932 added 2-3 trees (simpler and more complete than the version in ex/Tree23)
nipkow
parents:
diff changeset
   293
  "\<lbrakk> bal l; bal (tree\<^sub>d m'); bal r; height l = height r; height m' = height r \<rbrakk>
cd82b1023932 added 2-3 trees (simpler and more complete than the version in ex/Tree23)
nipkow
parents:
diff changeset
   294
  \<Longrightarrow> bal (tree\<^sub>d (node32 l a m' b r))"
cd82b1023932 added 2-3 trees (simpler and more complete than the version in ex/Tree23)
nipkow
parents:
diff changeset
   295
by(induct l a m' b r rule: node32.induct) auto
cd82b1023932 added 2-3 trees (simpler and more complete than the version in ex/Tree23)
nipkow
parents:
diff changeset
   296
cd82b1023932 added 2-3 trees (simpler and more complete than the version in ex/Tree23)
nipkow
parents:
diff changeset
   297
lemma bal_tree\<^sub>d_node33:
cd82b1023932 added 2-3 trees (simpler and more complete than the version in ex/Tree23)
nipkow
parents:
diff changeset
   298
  "\<lbrakk> bal l; bal m; bal(tree\<^sub>d r'); height l = height r'; height m = height r' \<rbrakk>
cd82b1023932 added 2-3 trees (simpler and more complete than the version in ex/Tree23)
nipkow
parents:
diff changeset
   299
  \<Longrightarrow> bal (tree\<^sub>d (node33 l a m b r'))"
cd82b1023932 added 2-3 trees (simpler and more complete than the version in ex/Tree23)
nipkow
parents:
diff changeset
   300
by(induct l a m b r' rule: node33.induct) auto
cd82b1023932 added 2-3 trees (simpler and more complete than the version in ex/Tree23)
nipkow
parents:
diff changeset
   301
cd82b1023932 added 2-3 trees (simpler and more complete than the version in ex/Tree23)
nipkow
parents:
diff changeset
   302
lemmas bals = bal_tree\<^sub>d_node21 bal_tree\<^sub>d_node22
cd82b1023932 added 2-3 trees (simpler and more complete than the version in ex/Tree23)
nipkow
parents:
diff changeset
   303
  bal_tree\<^sub>d_node31 bal_tree\<^sub>d_node32 bal_tree\<^sub>d_node33
cd82b1023932 added 2-3 trees (simpler and more complete than the version in ex/Tree23)
nipkow
parents:
diff changeset
   304
cd82b1023932 added 2-3 trees (simpler and more complete than the version in ex/Tree23)
nipkow
parents:
diff changeset
   305
lemma height'_node21:
cd82b1023932 added 2-3 trees (simpler and more complete than the version in ex/Tree23)
nipkow
parents:
diff changeset
   306
   "height r > 0 \<Longrightarrow> height(node21 l' a r) = max (height l') (height r) + 1"
cd82b1023932 added 2-3 trees (simpler and more complete than the version in ex/Tree23)
nipkow
parents:
diff changeset
   307
by(induct l' a r rule: node21.induct)(simp_all)
cd82b1023932 added 2-3 trees (simpler and more complete than the version in ex/Tree23)
nipkow
parents:
diff changeset
   308
cd82b1023932 added 2-3 trees (simpler and more complete than the version in ex/Tree23)
nipkow
parents:
diff changeset
   309
lemma height'_node22:
cd82b1023932 added 2-3 trees (simpler and more complete than the version in ex/Tree23)
nipkow
parents:
diff changeset
   310
   "height l > 0 \<Longrightarrow> height(node22 l a r') = max (height l) (height r') + 1"
cd82b1023932 added 2-3 trees (simpler and more complete than the version in ex/Tree23)
nipkow
parents:
diff changeset
   311
by(induct l a r' rule: node22.induct)(simp_all)
cd82b1023932 added 2-3 trees (simpler and more complete than the version in ex/Tree23)
nipkow
parents:
diff changeset
   312
cd82b1023932 added 2-3 trees (simpler and more complete than the version in ex/Tree23)
nipkow
parents:
diff changeset
   313
lemma height'_node31:
cd82b1023932 added 2-3 trees (simpler and more complete than the version in ex/Tree23)
nipkow
parents:
diff changeset
   314
  "height m > 0 \<Longrightarrow> height(node31 l a m b r) =
cd82b1023932 added 2-3 trees (simpler and more complete than the version in ex/Tree23)
nipkow
parents:
diff changeset
   315
   max (height l) (max (height m) (height r)) + 1"
cd82b1023932 added 2-3 trees (simpler and more complete than the version in ex/Tree23)
nipkow
parents:
diff changeset
   316
by(induct l a m b r rule: node31.induct)(simp_all add: max_def)
cd82b1023932 added 2-3 trees (simpler and more complete than the version in ex/Tree23)
nipkow
parents:
diff changeset
   317
cd82b1023932 added 2-3 trees (simpler and more complete than the version in ex/Tree23)
nipkow
parents:
diff changeset
   318
lemma height'_node32:
cd82b1023932 added 2-3 trees (simpler and more complete than the version in ex/Tree23)
nipkow
parents:
diff changeset
   319
  "height r > 0 \<Longrightarrow> height(node32 l a m b r) =
cd82b1023932 added 2-3 trees (simpler and more complete than the version in ex/Tree23)
nipkow
parents:
diff changeset
   320
   max (height l) (max (height m) (height r)) + 1"
cd82b1023932 added 2-3 trees (simpler and more complete than the version in ex/Tree23)
nipkow
parents:
diff changeset
   321
by(induct l a m b r rule: node32.induct)(simp_all add: max_def)
cd82b1023932 added 2-3 trees (simpler and more complete than the version in ex/Tree23)
nipkow
parents:
diff changeset
   322
cd82b1023932 added 2-3 trees (simpler and more complete than the version in ex/Tree23)
nipkow
parents:
diff changeset
   323
lemma height'_node33:
cd82b1023932 added 2-3 trees (simpler and more complete than the version in ex/Tree23)
nipkow
parents:
diff changeset
   324
  "height m > 0 \<Longrightarrow> height(node33 l a m b r) =
cd82b1023932 added 2-3 trees (simpler and more complete than the version in ex/Tree23)
nipkow
parents:
diff changeset
   325
   max (height l) (max (height m) (height r)) + 1"
cd82b1023932 added 2-3 trees (simpler and more complete than the version in ex/Tree23)
nipkow
parents:
diff changeset
   326
by(induct l a m b r rule: node33.induct)(simp_all add: max_def)
cd82b1023932 added 2-3 trees (simpler and more complete than the version in ex/Tree23)
nipkow
parents:
diff changeset
   327
cd82b1023932 added 2-3 trees (simpler and more complete than the version in ex/Tree23)
nipkow
parents:
diff changeset
   328
lemmas heights = height'_node21 height'_node22
cd82b1023932 added 2-3 trees (simpler and more complete than the version in ex/Tree23)
nipkow
parents:
diff changeset
   329
  height'_node31 height'_node32 height'_node33
cd82b1023932 added 2-3 trees (simpler and more complete than the version in ex/Tree23)
nipkow
parents:
diff changeset
   330
cd82b1023932 added 2-3 trees (simpler and more complete than the version in ex/Tree23)
nipkow
parents:
diff changeset
   331
lemma height_del_min:
cd82b1023932 added 2-3 trees (simpler and more complete than the version in ex/Tree23)
nipkow
parents:
diff changeset
   332
  "del_min t = (x, t') \<Longrightarrow> height t > 0 \<Longrightarrow> bal t \<Longrightarrow> height t' = height t"
cd82b1023932 added 2-3 trees (simpler and more complete than the version in ex/Tree23)
nipkow
parents:
diff changeset
   333
by(induct t arbitrary: x t' rule: del_min.induct)
cd82b1023932 added 2-3 trees (simpler and more complete than the version in ex/Tree23)
nipkow
parents:
diff changeset
   334
  (auto simp: heights split: prod.splits)
cd82b1023932 added 2-3 trees (simpler and more complete than the version in ex/Tree23)
nipkow
parents:
diff changeset
   335
cd82b1023932 added 2-3 trees (simpler and more complete than the version in ex/Tree23)
nipkow
parents:
diff changeset
   336
lemma height_del: "bal t \<Longrightarrow> height(del x t) = height t"
cd82b1023932 added 2-3 trees (simpler and more complete than the version in ex/Tree23)
nipkow
parents:
diff changeset
   337
by(induction x t rule: del.induct)
61513
nipkow
parents: 61469
diff changeset
   338
  (auto simp: heights max_def height_del_min split: prod.splits)
61469
cd82b1023932 added 2-3 trees (simpler and more complete than the version in ex/Tree23)
nipkow
parents:
diff changeset
   339
cd82b1023932 added 2-3 trees (simpler and more complete than the version in ex/Tree23)
nipkow
parents:
diff changeset
   340
lemma bal_del_min:
cd82b1023932 added 2-3 trees (simpler and more complete than the version in ex/Tree23)
nipkow
parents:
diff changeset
   341
  "\<lbrakk> del_min t = (x, t'); bal t; height t > 0 \<rbrakk> \<Longrightarrow> bal (tree\<^sub>d t')"
cd82b1023932 added 2-3 trees (simpler and more complete than the version in ex/Tree23)
nipkow
parents:
diff changeset
   342
by(induct t arbitrary: x t' rule: del_min.induct)
61513
nipkow
parents: 61469
diff changeset
   343
  (auto simp: heights height_del_min bals split: prod.splits)
61469
cd82b1023932 added 2-3 trees (simpler and more complete than the version in ex/Tree23)
nipkow
parents:
diff changeset
   344
cd82b1023932 added 2-3 trees (simpler and more complete than the version in ex/Tree23)
nipkow
parents:
diff changeset
   345
lemma bal_tree\<^sub>d_del: "bal t \<Longrightarrow> bal(tree\<^sub>d(del x t))"
cd82b1023932 added 2-3 trees (simpler and more complete than the version in ex/Tree23)
nipkow
parents:
diff changeset
   346
by(induction x t rule: del.induct)
61513
nipkow
parents: 61469
diff changeset
   347
  (auto simp: bals bal_del_min height_del height_del_min split: prod.splits)
nipkow
parents: 61469
diff changeset
   348
61469
cd82b1023932 added 2-3 trees (simpler and more complete than the version in ex/Tree23)
nipkow
parents:
diff changeset
   349
corollary bal_delete: "bal t \<Longrightarrow> bal(delete x t)"
cd82b1023932 added 2-3 trees (simpler and more complete than the version in ex/Tree23)
nipkow
parents:
diff changeset
   350
by(simp add: delete_def bal_tree\<^sub>d_del)
cd82b1023932 added 2-3 trees (simpler and more complete than the version in ex/Tree23)
nipkow
parents:
diff changeset
   351
cd82b1023932 added 2-3 trees (simpler and more complete than the version in ex/Tree23)
nipkow
parents:
diff changeset
   352
cd82b1023932 added 2-3 trees (simpler and more complete than the version in ex/Tree23)
nipkow
parents:
diff changeset
   353
subsection \<open>Overall Correctness\<close>
cd82b1023932 added 2-3 trees (simpler and more complete than the version in ex/Tree23)
nipkow
parents:
diff changeset
   354
cd82b1023932 added 2-3 trees (simpler and more complete than the version in ex/Tree23)
nipkow
parents:
diff changeset
   355
interpretation Set_by_Ordered
cd82b1023932 added 2-3 trees (simpler and more complete than the version in ex/Tree23)
nipkow
parents:
diff changeset
   356
where empty = Leaf and isin = isin and insert = insert and delete = delete
cd82b1023932 added 2-3 trees (simpler and more complete than the version in ex/Tree23)
nipkow
parents:
diff changeset
   357
and inorder = inorder and wf = bal
cd82b1023932 added 2-3 trees (simpler and more complete than the version in ex/Tree23)
nipkow
parents:
diff changeset
   358
proof (standard, goal_cases)
cd82b1023932 added 2-3 trees (simpler and more complete than the version in ex/Tree23)
nipkow
parents:
diff changeset
   359
  case 2 thus ?case by(simp add: isin_set)
cd82b1023932 added 2-3 trees (simpler and more complete than the version in ex/Tree23)
nipkow
parents:
diff changeset
   360
next
cd82b1023932 added 2-3 trees (simpler and more complete than the version in ex/Tree23)
nipkow
parents:
diff changeset
   361
  case 3 thus ?case by(simp add: inorder_insert)
cd82b1023932 added 2-3 trees (simpler and more complete than the version in ex/Tree23)
nipkow
parents:
diff changeset
   362
next
cd82b1023932 added 2-3 trees (simpler and more complete than the version in ex/Tree23)
nipkow
parents:
diff changeset
   363
  case 4 thus ?case by(simp add: inorder_delete)
cd82b1023932 added 2-3 trees (simpler and more complete than the version in ex/Tree23)
nipkow
parents:
diff changeset
   364
next
cd82b1023932 added 2-3 trees (simpler and more complete than the version in ex/Tree23)
nipkow
parents:
diff changeset
   365
  case 6 thus ?case by(simp add: bal_insert)
cd82b1023932 added 2-3 trees (simpler and more complete than the version in ex/Tree23)
nipkow
parents:
diff changeset
   366
next
cd82b1023932 added 2-3 trees (simpler and more complete than the version in ex/Tree23)
nipkow
parents:
diff changeset
   367
  case 7 thus ?case by(simp add: bal_delete)
cd82b1023932 added 2-3 trees (simpler and more complete than the version in ex/Tree23)
nipkow
parents:
diff changeset
   368
qed simp+
cd82b1023932 added 2-3 trees (simpler and more complete than the version in ex/Tree23)
nipkow
parents:
diff changeset
   369
cd82b1023932 added 2-3 trees (simpler and more complete than the version in ex/Tree23)
nipkow
parents:
diff changeset
   370
end