src/HOL/Data_Structures/AVL_Bal_Set.thy
author nipkow
Tue, 12 May 2020 10:59:59 +0200
changeset 71830 7a997ead54b0
parent 71828 415c38ef38c0
child 71844 57ace76cbffa
permissions -rw-r--r--
"app" -> "join" for RBTs
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
71814
a9df6686ed0e AVL trees with balance tags
nipkow
parents:
diff changeset
     1
(* Tobias Nipkow *)
a9df6686ed0e AVL trees with balance tags
nipkow
parents:
diff changeset
     2
71818
nipkow
parents: 71816
diff changeset
     3
section "AVL Tree with Balance Factors"
71814
a9df6686ed0e AVL trees with balance tags
nipkow
parents:
diff changeset
     4
a9df6686ed0e AVL trees with balance tags
nipkow
parents:
diff changeset
     5
theory AVL_Bal_Set
a9df6686ed0e AVL trees with balance tags
nipkow
parents:
diff changeset
     6
imports
a9df6686ed0e AVL trees with balance tags
nipkow
parents:
diff changeset
     7
  Cmp
a9df6686ed0e AVL trees with balance tags
nipkow
parents:
diff changeset
     8
  Isin2
a9df6686ed0e AVL trees with balance tags
nipkow
parents:
diff changeset
     9
begin
a9df6686ed0e AVL trees with balance tags
nipkow
parents:
diff changeset
    10
a9df6686ed0e AVL trees with balance tags
nipkow
parents:
diff changeset
    11
datatype bal = Lh | Bal | Rh
a9df6686ed0e AVL trees with balance tags
nipkow
parents:
diff changeset
    12
a9df6686ed0e AVL trees with balance tags
nipkow
parents:
diff changeset
    13
type_synonym 'a tree_bal = "('a * bal) tree"
a9df6686ed0e AVL trees with balance tags
nipkow
parents:
diff changeset
    14
a9df6686ed0e AVL trees with balance tags
nipkow
parents:
diff changeset
    15
text \<open>Invariant:\<close>
a9df6686ed0e AVL trees with balance tags
nipkow
parents:
diff changeset
    16
a9df6686ed0e AVL trees with balance tags
nipkow
parents:
diff changeset
    17
fun avl :: "'a tree_bal \<Rightarrow> bool" where
a9df6686ed0e AVL trees with balance tags
nipkow
parents:
diff changeset
    18
"avl Leaf = True" |
a9df6686ed0e AVL trees with balance tags
nipkow
parents:
diff changeset
    19
"avl (Node l (a,b) r) =
a9df6686ed0e AVL trees with balance tags
nipkow
parents:
diff changeset
    20
  ((case b of
a9df6686ed0e AVL trees with balance tags
nipkow
parents:
diff changeset
    21
    Bal \<Rightarrow> height r = height l |
a9df6686ed0e AVL trees with balance tags
nipkow
parents:
diff changeset
    22
    Lh \<Rightarrow> height l = height r + 1 |
a9df6686ed0e AVL trees with balance tags
nipkow
parents:
diff changeset
    23
    Rh \<Rightarrow> height r = height l + 1)
a9df6686ed0e AVL trees with balance tags
nipkow
parents:
diff changeset
    24
  \<and> avl l \<and> avl r)"
a9df6686ed0e AVL trees with balance tags
nipkow
parents:
diff changeset
    25
a9df6686ed0e AVL trees with balance tags
nipkow
parents:
diff changeset
    26
a9df6686ed0e AVL trees with balance tags
nipkow
parents:
diff changeset
    27
subsection \<open>Code\<close>
a9df6686ed0e AVL trees with balance tags
nipkow
parents:
diff changeset
    28
71828
415c38ef38c0 added top-level functions and tuned
nipkow
parents: 71824
diff changeset
    29
datatype 'a alt = Same 'a | Diff 'a
71814
a9df6686ed0e AVL trees with balance tags
nipkow
parents:
diff changeset
    30
71828
415c38ef38c0 added top-level functions and tuned
nipkow
parents: 71824
diff changeset
    31
type_synonym 'a tree_bal2 = "'a tree_bal alt"
415c38ef38c0 added top-level functions and tuned
nipkow
parents: 71824
diff changeset
    32
415c38ef38c0 added top-level functions and tuned
nipkow
parents: 71824
diff changeset
    33
fun tree :: "'a alt \<Rightarrow> 'a" where
71814
a9df6686ed0e AVL trees with balance tags
nipkow
parents:
diff changeset
    34
"tree(Same t) = t" |
a9df6686ed0e AVL trees with balance tags
nipkow
parents:
diff changeset
    35
"tree(Diff t) = t"
a9df6686ed0e AVL trees with balance tags
nipkow
parents:
diff changeset
    36
71820
dd5b8072ca90 simplified and tuned
nipkow
parents: 71819
diff changeset
    37
fun rot2 where
dd5b8072ca90 simplified and tuned
nipkow
parents: 71819
diff changeset
    38
"rot2 A a B c C = (case B of
dd5b8072ca90 simplified and tuned
nipkow
parents: 71819
diff changeset
    39
  (Node B\<^sub>1 (b, bb) B\<^sub>2) \<Rightarrow>
dd5b8072ca90 simplified and tuned
nipkow
parents: 71819
diff changeset
    40
    let b\<^sub>1 = if bb = Rh then Lh else Bal;
dd5b8072ca90 simplified and tuned
nipkow
parents: 71819
diff changeset
    41
        b\<^sub>2 = if bb = Lh then Rh else Bal
dd5b8072ca90 simplified and tuned
nipkow
parents: 71819
diff changeset
    42
    in Node (Node A (a,b\<^sub>1) B\<^sub>1) (b,Bal) (Node B\<^sub>2 (c,b\<^sub>2) C))"
71814
a9df6686ed0e AVL trees with balance tags
nipkow
parents:
diff changeset
    43
71818
nipkow
parents: 71816
diff changeset
    44
fun balL :: "'a tree_bal2 \<Rightarrow> 'a \<Rightarrow> bal \<Rightarrow> 'a tree_bal \<Rightarrow> 'a tree_bal2" where
71815
a86e37f4ad60 tuned var. names
nipkow
parents: 71814
diff changeset
    45
"balL AB' c bc C = (case AB' of
a86e37f4ad60 tuned var. names
nipkow
parents: 71814
diff changeset
    46
   Same AB \<Rightarrow> Same (Node AB (c,bc) C) |
a86e37f4ad60 tuned var. names
nipkow
parents: 71814
diff changeset
    47
   Diff AB \<Rightarrow> (case bc of
a86e37f4ad60 tuned var. names
nipkow
parents: 71814
diff changeset
    48
     Bal \<Rightarrow> Diff (Node AB (c,Lh) C) |
a86e37f4ad60 tuned var. names
nipkow
parents: 71814
diff changeset
    49
     Rh \<Rightarrow> Same (Node AB (c,Bal) C) |
71824
95d2d5e60419 avoid hidden undef cases
nipkow
parents: 71820
diff changeset
    50
     Lh \<Rightarrow> (case AB of
95d2d5e60419 avoid hidden undef cases
nipkow
parents: 71820
diff changeset
    51
       Node A (a,Lh) B \<Rightarrow> Same(Node A (a,Bal) (Node B (c,Bal) C)) |
95d2d5e60419 avoid hidden undef cases
nipkow
parents: 71820
diff changeset
    52
       Node A (a,Rh) B \<Rightarrow> Same(rot2 A a B c C))))"
71814
a9df6686ed0e AVL trees with balance tags
nipkow
parents:
diff changeset
    53
71818
nipkow
parents: 71816
diff changeset
    54
fun balR :: "'a tree_bal \<Rightarrow> 'a \<Rightarrow> bal \<Rightarrow> 'a tree_bal2 \<Rightarrow> 'a tree_bal2" where
71815
a86e37f4ad60 tuned var. names
nipkow
parents: 71814
diff changeset
    55
"balR A a ba BC' = (case BC' of
a86e37f4ad60 tuned var. names
nipkow
parents: 71814
diff changeset
    56
   Same BC \<Rightarrow> Same (Node A (a,ba) BC) |
a86e37f4ad60 tuned var. names
nipkow
parents: 71814
diff changeset
    57
   Diff BC \<Rightarrow> (case ba of
a86e37f4ad60 tuned var. names
nipkow
parents: 71814
diff changeset
    58
     Bal \<Rightarrow> Diff (Node A (a,Rh) BC) |
a86e37f4ad60 tuned var. names
nipkow
parents: 71814
diff changeset
    59
     Lh \<Rightarrow> Same (Node A (a,Bal) BC) |
71824
95d2d5e60419 avoid hidden undef cases
nipkow
parents: 71820
diff changeset
    60
     Rh \<Rightarrow> (case BC of
95d2d5e60419 avoid hidden undef cases
nipkow
parents: 71820
diff changeset
    61
       Node B (c,Rh) C \<Rightarrow> Same(Node (Node A (a,Bal) B) (c,Bal) C) |
95d2d5e60419 avoid hidden undef cases
nipkow
parents: 71820
diff changeset
    62
       Node B (c,Lh) C \<Rightarrow> Same(rot2 A a B c C))))"
71814
a9df6686ed0e AVL trees with balance tags
nipkow
parents:
diff changeset
    63
71828
415c38ef38c0 added top-level functions and tuned
nipkow
parents: 71824
diff changeset
    64
fun ins :: "'a::linorder \<Rightarrow> 'a tree_bal \<Rightarrow> 'a tree_bal2" where
415c38ef38c0 added top-level functions and tuned
nipkow
parents: 71824
diff changeset
    65
"ins x Leaf = Diff(Node Leaf (x, Bal) Leaf)" |
415c38ef38c0 added top-level functions and tuned
nipkow
parents: 71824
diff changeset
    66
"ins x (Node l (a, b) r) = (case cmp x a of
71814
a9df6686ed0e AVL trees with balance tags
nipkow
parents:
diff changeset
    67
   EQ \<Rightarrow> Same(Node l (a, b) r) |
71828
415c38ef38c0 added top-level functions and tuned
nipkow
parents: 71824
diff changeset
    68
   LT \<Rightarrow> balL (ins x l) a b r |
415c38ef38c0 added top-level functions and tuned
nipkow
parents: 71824
diff changeset
    69
   GT \<Rightarrow> balR l a b (ins x r))"
415c38ef38c0 added top-level functions and tuned
nipkow
parents: 71824
diff changeset
    70
415c38ef38c0 added top-level functions and tuned
nipkow
parents: 71824
diff changeset
    71
definition insert :: "'a::linorder \<Rightarrow> 'a tree_bal \<Rightarrow> 'a tree_bal" where
415c38ef38c0 added top-level functions and tuned
nipkow
parents: 71824
diff changeset
    72
"insert x t = tree(ins x t)"
71814
a9df6686ed0e AVL trees with balance tags
nipkow
parents:
diff changeset
    73
71818
nipkow
parents: 71816
diff changeset
    74
fun baldR :: "'a tree_bal \<Rightarrow> 'a \<Rightarrow> bal \<Rightarrow> 'a tree_bal2 \<Rightarrow> 'a tree_bal2" where
71816
489c907b9e05 tuned var. names
nipkow
parents: 71815
diff changeset
    75
"baldR AB c bc C' = (case C' of
489c907b9e05 tuned var. names
nipkow
parents: 71815
diff changeset
    76
   Same C \<Rightarrow> Same (Node AB (c,bc) C) |
489c907b9e05 tuned var. names
nipkow
parents: 71815
diff changeset
    77
   Diff C \<Rightarrow> (case bc of
489c907b9e05 tuned var. names
nipkow
parents: 71815
diff changeset
    78
     Bal \<Rightarrow> Same (Node AB (c,Lh) C) |
489c907b9e05 tuned var. names
nipkow
parents: 71815
diff changeset
    79
     Rh \<Rightarrow> Diff (Node AB (c,Bal) C) |
71814
a9df6686ed0e AVL trees with balance tags
nipkow
parents:
diff changeset
    80
     Lh \<Rightarrow> (case AB of
71816
489c907b9e05 tuned var. names
nipkow
parents: 71815
diff changeset
    81
       Node A (a,Lh) B \<Rightarrow> Diff(Node A (a,Bal) (Node B (c,Bal) C)) |
489c907b9e05 tuned var. names
nipkow
parents: 71815
diff changeset
    82
       Node A (a,Bal) B \<Rightarrow> Same(Node A (a,Rh) (Node B (c,Lh) C)) |
71820
dd5b8072ca90 simplified and tuned
nipkow
parents: 71819
diff changeset
    83
       Node A (a,Rh) B \<Rightarrow> Diff(rot2 A a B c C))))"
71814
a9df6686ed0e AVL trees with balance tags
nipkow
parents:
diff changeset
    84
71818
nipkow
parents: 71816
diff changeset
    85
fun baldL :: "'a tree_bal2 \<Rightarrow> 'a \<Rightarrow> bal \<Rightarrow> 'a tree_bal \<Rightarrow> 'a tree_bal2" where
71816
489c907b9e05 tuned var. names
nipkow
parents: 71815
diff changeset
    86
"baldL A' a ba BC = (case A' of
489c907b9e05 tuned var. names
nipkow
parents: 71815
diff changeset
    87
   Same A \<Rightarrow> Same (Node A (a,ba) BC) |
489c907b9e05 tuned var. names
nipkow
parents: 71815
diff changeset
    88
   Diff A \<Rightarrow> (case ba of
489c907b9e05 tuned var. names
nipkow
parents: 71815
diff changeset
    89
     Bal \<Rightarrow> Same (Node A (a,Rh) BC) |
489c907b9e05 tuned var. names
nipkow
parents: 71815
diff changeset
    90
     Lh \<Rightarrow> Diff (Node A (a,Bal) BC) |
71814
a9df6686ed0e AVL trees with balance tags
nipkow
parents:
diff changeset
    91
     Rh \<Rightarrow> (case BC of
71816
489c907b9e05 tuned var. names
nipkow
parents: 71815
diff changeset
    92
       Node B (c,Rh) C \<Rightarrow> Diff(Node (Node A (a,Bal) B) (c,Bal) C) |
489c907b9e05 tuned var. names
nipkow
parents: 71815
diff changeset
    93
       Node B (c,Bal) C \<Rightarrow> Same(Node (Node A (a,Rh) B) (c,Lh) C) |
71820
dd5b8072ca90 simplified and tuned
nipkow
parents: 71819
diff changeset
    94
       Node B (c,Lh) C \<Rightarrow> Diff(rot2 A a B c C))))"
71814
a9df6686ed0e AVL trees with balance tags
nipkow
parents:
diff changeset
    95
71818
nipkow
parents: 71816
diff changeset
    96
fun split_max :: "'a tree_bal \<Rightarrow> 'a tree_bal2 * 'a" where
71814
a9df6686ed0e AVL trees with balance tags
nipkow
parents:
diff changeset
    97
"split_max (Node l (a, ba) r) =
a9df6686ed0e AVL trees with balance tags
nipkow
parents:
diff changeset
    98
  (if r = Leaf then (Diff l,a) else let (r',a') = split_max r in (baldR l a ba r', a'))"
a9df6686ed0e AVL trees with balance tags
nipkow
parents:
diff changeset
    99
71828
415c38ef38c0 added top-level functions and tuned
nipkow
parents: 71824
diff changeset
   100
fun del :: "'a::linorder \<Rightarrow> 'a tree_bal \<Rightarrow> 'a tree_bal2" where
415c38ef38c0 added top-level functions and tuned
nipkow
parents: 71824
diff changeset
   101
"del _ Leaf = Same Leaf" |
415c38ef38c0 added top-level functions and tuned
nipkow
parents: 71824
diff changeset
   102
"del x (Node l (a, ba) r) =
71814
a9df6686ed0e AVL trees with balance tags
nipkow
parents:
diff changeset
   103
  (case cmp x a of
a9df6686ed0e AVL trees with balance tags
nipkow
parents:
diff changeset
   104
     EQ \<Rightarrow> if l = Leaf then Diff r
a9df6686ed0e AVL trees with balance tags
nipkow
parents:
diff changeset
   105
           else let (l', a') = split_max l in baldL l' a' ba r |
71828
415c38ef38c0 added top-level functions and tuned
nipkow
parents: 71824
diff changeset
   106
     LT \<Rightarrow> baldL (del x l) a ba r |
415c38ef38c0 added top-level functions and tuned
nipkow
parents: 71824
diff changeset
   107
     GT \<Rightarrow> baldR l a ba (del x r))"
415c38ef38c0 added top-level functions and tuned
nipkow
parents: 71824
diff changeset
   108
415c38ef38c0 added top-level functions and tuned
nipkow
parents: 71824
diff changeset
   109
definition delete :: "'a::linorder \<Rightarrow> 'a tree_bal \<Rightarrow> 'a tree_bal" where
415c38ef38c0 added top-level functions and tuned
nipkow
parents: 71824
diff changeset
   110
"delete x t = tree(del x t)"
71814
a9df6686ed0e AVL trees with balance tags
nipkow
parents:
diff changeset
   111
a9df6686ed0e AVL trees with balance tags
nipkow
parents:
diff changeset
   112
lemmas split_max_induct = split_max.induct[case_names Node Leaf]
a9df6686ed0e AVL trees with balance tags
nipkow
parents:
diff changeset
   113
71828
415c38ef38c0 added top-level functions and tuned
nipkow
parents: 71824
diff changeset
   114
lemmas splits = if_splits tree.splits alt.splits bal.splits
71814
a9df6686ed0e AVL trees with balance tags
nipkow
parents:
diff changeset
   115
a9df6686ed0e AVL trees with balance tags
nipkow
parents:
diff changeset
   116
subsection \<open>Proofs\<close>
a9df6686ed0e AVL trees with balance tags
nipkow
parents:
diff changeset
   117
71828
415c38ef38c0 added top-level functions and tuned
nipkow
parents: 71824
diff changeset
   118
subsubsection "Proofs about insertion"
71814
a9df6686ed0e AVL trees with balance tags
nipkow
parents:
diff changeset
   119
71828
415c38ef38c0 added top-level functions and tuned
nipkow
parents: 71824
diff changeset
   120
lemma avl_ins_case: "avl t \<Longrightarrow> case ins x t of
71814
a9df6686ed0e AVL trees with balance tags
nipkow
parents:
diff changeset
   121
   Same t' \<Rightarrow> avl t' \<and> height t' = height t |
71824
95d2d5e60419 avoid hidden undef cases
nipkow
parents: 71820
diff changeset
   122
   Diff t' \<Rightarrow> avl t' \<and> height t' = height t + 1 \<and>
95d2d5e60419 avoid hidden undef cases
nipkow
parents: 71820
diff changeset
   123
      (\<forall>l a r. t' = Node l (a,Bal) r \<longrightarrow> a = x \<and> l = Leaf \<and> r = Leaf)"
71828
415c38ef38c0 added top-level functions and tuned
nipkow
parents: 71824
diff changeset
   124
apply(induction x t rule: ins.induct)
71814
a9df6686ed0e AVL trees with balance tags
nipkow
parents:
diff changeset
   125
apply(auto simp: max_absorb1 split!: splits)
a9df6686ed0e AVL trees with balance tags
nipkow
parents:
diff changeset
   126
done
a9df6686ed0e AVL trees with balance tags
nipkow
parents:
diff changeset
   127
71828
415c38ef38c0 added top-level functions and tuned
nipkow
parents: 71824
diff changeset
   128
corollary avl_insert: "avl t \<Longrightarrow> avl(insert x t)"
415c38ef38c0 added top-level functions and tuned
nipkow
parents: 71824
diff changeset
   129
using avl_ins_case[of t x] by (simp add: insert_def split: splits)
71814
a9df6686ed0e AVL trees with balance tags
nipkow
parents:
diff changeset
   130
71828
415c38ef38c0 added top-level functions and tuned
nipkow
parents: 71824
diff changeset
   131
(* The following aux lemma simplifies the inorder_ins proof *)
71824
95d2d5e60419 avoid hidden undef cases
nipkow
parents: 71820
diff changeset
   132
71828
415c38ef38c0 added top-level functions and tuned
nipkow
parents: 71824
diff changeset
   133
lemma ins_Diff[simp]: "avl t \<Longrightarrow>
415c38ef38c0 added top-level functions and tuned
nipkow
parents: 71824
diff changeset
   134
  ins x t \<noteq> Diff Leaf \<and>
415c38ef38c0 added top-level functions and tuned
nipkow
parents: 71824
diff changeset
   135
  (ins x t = Diff (Node l (a,Bal) r) \<longleftrightarrow> t = Leaf \<and> a = x \<and> l=Leaf \<and> r=Leaf) \<and>
415c38ef38c0 added top-level functions and tuned
nipkow
parents: 71824
diff changeset
   136
  ins x t \<noteq> Diff (Node l (a,Rh) Leaf) \<and>
415c38ef38c0 added top-level functions and tuned
nipkow
parents: 71824
diff changeset
   137
  ins x t \<noteq> Diff (Node Leaf (a,Lh) r)"
415c38ef38c0 added top-level functions and tuned
nipkow
parents: 71824
diff changeset
   138
by(drule avl_ins_case[of _ x]) (auto split: splits)
71824
95d2d5e60419 avoid hidden undef cases
nipkow
parents: 71820
diff changeset
   139
71828
415c38ef38c0 added top-level functions and tuned
nipkow
parents: 71824
diff changeset
   140
theorem inorder_ins:
415c38ef38c0 added top-level functions and tuned
nipkow
parents: 71824
diff changeset
   141
  "\<lbrakk> avl t;  sorted(inorder t) \<rbrakk> \<Longrightarrow> inorder(tree(ins x t)) = ins_list x (inorder t)"
71824
95d2d5e60419 avoid hidden undef cases
nipkow
parents: 71820
diff changeset
   142
apply(induction t)
95d2d5e60419 avoid hidden undef cases
nipkow
parents: 71820
diff changeset
   143
apply (auto simp: ins_list_simps  split!: splits)
95d2d5e60419 avoid hidden undef cases
nipkow
parents: 71820
diff changeset
   144
done
95d2d5e60419 avoid hidden undef cases
nipkow
parents: 71820
diff changeset
   145
71814
a9df6686ed0e AVL trees with balance tags
nipkow
parents:
diff changeset
   146
71828
415c38ef38c0 added top-level functions and tuned
nipkow
parents: 71824
diff changeset
   147
subsubsection "Proofs about deletion"
71814
a9df6686ed0e AVL trees with balance tags
nipkow
parents:
diff changeset
   148
a9df6686ed0e AVL trees with balance tags
nipkow
parents:
diff changeset
   149
lemma inorder_baldL:
a9df6686ed0e AVL trees with balance tags
nipkow
parents:
diff changeset
   150
  "\<lbrakk> ba = Rh \<longrightarrow> r \<noteq> Leaf; avl r \<rbrakk>
a9df6686ed0e AVL trees with balance tags
nipkow
parents:
diff changeset
   151
  \<Longrightarrow> inorder (tree(baldL l a ba r)) = inorder (tree l) @ a # inorder r"
a9df6686ed0e AVL trees with balance tags
nipkow
parents:
diff changeset
   152
by (auto split: splits)
a9df6686ed0e AVL trees with balance tags
nipkow
parents:
diff changeset
   153
a9df6686ed0e AVL trees with balance tags
nipkow
parents:
diff changeset
   154
lemma inorder_baldR:
a9df6686ed0e AVL trees with balance tags
nipkow
parents:
diff changeset
   155
  "\<lbrakk> ba = Lh \<longrightarrow> l \<noteq> Leaf; avl l \<rbrakk>
a9df6686ed0e AVL trees with balance tags
nipkow
parents:
diff changeset
   156
   \<Longrightarrow> inorder (tree(baldR l a ba r)) = inorder l @ a # inorder (tree r)"
a9df6686ed0e AVL trees with balance tags
nipkow
parents:
diff changeset
   157
by (auto split: splits)
a9df6686ed0e AVL trees with balance tags
nipkow
parents:
diff changeset
   158
a9df6686ed0e AVL trees with balance tags
nipkow
parents:
diff changeset
   159
lemma avl_split_max:
a9df6686ed0e AVL trees with balance tags
nipkow
parents:
diff changeset
   160
  "\<lbrakk> split_max t = (t',a); avl t; t \<noteq> Leaf \<rbrakk> \<Longrightarrow> case t' of
a9df6686ed0e AVL trees with balance tags
nipkow
parents:
diff changeset
   161
   Same t' \<Rightarrow> avl t' \<and> height t = height t' |
a9df6686ed0e AVL trees with balance tags
nipkow
parents:
diff changeset
   162
   Diff t' \<Rightarrow> avl t' \<and> height t = height t' + 1"
a9df6686ed0e AVL trees with balance tags
nipkow
parents:
diff changeset
   163
apply(induction t arbitrary: t' a rule: split_max_induct)
a9df6686ed0e AVL trees with balance tags
nipkow
parents:
diff changeset
   164
 apply(fastforce simp: max_absorb1 max_absorb2 split!: splits prod.splits)
a9df6686ed0e AVL trees with balance tags
nipkow
parents:
diff changeset
   165
apply simp
a9df6686ed0e AVL trees with balance tags
nipkow
parents:
diff changeset
   166
done
a9df6686ed0e AVL trees with balance tags
nipkow
parents:
diff changeset
   167
71828
415c38ef38c0 added top-level functions and tuned
nipkow
parents: 71824
diff changeset
   168
lemma avl_del_case: "avl t \<Longrightarrow> case del x t of
71814
a9df6686ed0e AVL trees with balance tags
nipkow
parents:
diff changeset
   169
   Same t' \<Rightarrow> avl t' \<and> height t = height t' |
a9df6686ed0e AVL trees with balance tags
nipkow
parents:
diff changeset
   170
   Diff t' \<Rightarrow> avl t' \<and> height t = height t' + 1"
71828
415c38ef38c0 added top-level functions and tuned
nipkow
parents: 71824
diff changeset
   171
apply(induction x t rule: del.induct)
71814
a9df6686ed0e AVL trees with balance tags
nipkow
parents:
diff changeset
   172
 apply(auto simp: max_absorb1 max_absorb2 dest: avl_split_max split!: splits prod.splits)
a9df6686ed0e AVL trees with balance tags
nipkow
parents:
diff changeset
   173
done
a9df6686ed0e AVL trees with balance tags
nipkow
parents:
diff changeset
   174
71828
415c38ef38c0 added top-level functions and tuned
nipkow
parents: 71824
diff changeset
   175
corollary avl_delete: "avl t \<Longrightarrow> avl(delete x t)"
415c38ef38c0 added top-level functions and tuned
nipkow
parents: 71824
diff changeset
   176
using avl_del_case[of t x] by(simp add: delete_def split: splits)
71814
a9df6686ed0e AVL trees with balance tags
nipkow
parents:
diff changeset
   177
a9df6686ed0e AVL trees with balance tags
nipkow
parents:
diff changeset
   178
lemma inorder_split_maxD:
a9df6686ed0e AVL trees with balance tags
nipkow
parents:
diff changeset
   179
  "\<lbrakk> split_max t = (t',a); t \<noteq> Leaf; avl t \<rbrakk> \<Longrightarrow>
a9df6686ed0e AVL trees with balance tags
nipkow
parents:
diff changeset
   180
   inorder (tree t') @ [a] = inorder t"
a9df6686ed0e AVL trees with balance tags
nipkow
parents:
diff changeset
   181
apply(induction t arbitrary: t' rule: split_max.induct)
a9df6686ed0e AVL trees with balance tags
nipkow
parents:
diff changeset
   182
 apply(fastforce split!: splits prod.splits)
a9df6686ed0e AVL trees with balance tags
nipkow
parents:
diff changeset
   183
apply simp
a9df6686ed0e AVL trees with balance tags
nipkow
parents:
diff changeset
   184
done
a9df6686ed0e AVL trees with balance tags
nipkow
parents:
diff changeset
   185
a9df6686ed0e AVL trees with balance tags
nipkow
parents:
diff changeset
   186
lemma neq_Leaf_if_height_neq_0[simp]: "height t \<noteq> 0 \<Longrightarrow> t \<noteq> Leaf"
a9df6686ed0e AVL trees with balance tags
nipkow
parents:
diff changeset
   187
by auto
a9df6686ed0e AVL trees with balance tags
nipkow
parents:
diff changeset
   188
71828
415c38ef38c0 added top-level functions and tuned
nipkow
parents: 71824
diff changeset
   189
theorem inorder_del:
415c38ef38c0 added top-level functions and tuned
nipkow
parents: 71824
diff changeset
   190
  "\<lbrakk> avl t; sorted(inorder t) \<rbrakk>  \<Longrightarrow> inorder (tree(del x t)) = del_list x (inorder t)"
71814
a9df6686ed0e AVL trees with balance tags
nipkow
parents:
diff changeset
   191
apply(induction t rule: tree2_induct)
a9df6686ed0e AVL trees with balance tags
nipkow
parents:
diff changeset
   192
apply(auto simp: del_list_simps inorder_baldL inorder_baldR avl_delete inorder_split_maxD
a9df6686ed0e AVL trees with balance tags
nipkow
parents:
diff changeset
   193
           simp del: baldR.simps baldL.simps split!: splits prod.splits)
a9df6686ed0e AVL trees with balance tags
nipkow
parents:
diff changeset
   194
done
a9df6686ed0e AVL trees with balance tags
nipkow
parents:
diff changeset
   195
a9df6686ed0e AVL trees with balance tags
nipkow
parents:
diff changeset
   196
a9df6686ed0e AVL trees with balance tags
nipkow
parents:
diff changeset
   197
subsubsection \<open>Set Implementation\<close>
a9df6686ed0e AVL trees with balance tags
nipkow
parents:
diff changeset
   198
a9df6686ed0e AVL trees with balance tags
nipkow
parents:
diff changeset
   199
interpretation S: Set_by_Ordered
a9df6686ed0e AVL trees with balance tags
nipkow
parents:
diff changeset
   200
where empty = Leaf and isin = isin
71828
415c38ef38c0 added top-level functions and tuned
nipkow
parents: 71824
diff changeset
   201
  and insert = insert
415c38ef38c0 added top-level functions and tuned
nipkow
parents: 71824
diff changeset
   202
  and delete = delete
71814
a9df6686ed0e AVL trees with balance tags
nipkow
parents:
diff changeset
   203
  and inorder = inorder and inv = avl
a9df6686ed0e AVL trees with balance tags
nipkow
parents:
diff changeset
   204
proof (standard, goal_cases)
a9df6686ed0e AVL trees with balance tags
nipkow
parents:
diff changeset
   205
  case 1 show ?case by (simp)
a9df6686ed0e AVL trees with balance tags
nipkow
parents:
diff changeset
   206
next
a9df6686ed0e AVL trees with balance tags
nipkow
parents:
diff changeset
   207
  case 2 thus ?case by(simp add: isin_set_inorder)
a9df6686ed0e AVL trees with balance tags
nipkow
parents:
diff changeset
   208
next
71828
415c38ef38c0 added top-level functions and tuned
nipkow
parents: 71824
diff changeset
   209
  case 3 thus ?case by(simp add: inorder_ins insert_def)
71814
a9df6686ed0e AVL trees with balance tags
nipkow
parents:
diff changeset
   210
next
71828
415c38ef38c0 added top-level functions and tuned
nipkow
parents: 71824
diff changeset
   211
  case 4 thus ?case by(simp add: inorder_del delete_def)
71814
a9df6686ed0e AVL trees with balance tags
nipkow
parents:
diff changeset
   212
next
71828
415c38ef38c0 added top-level functions and tuned
nipkow
parents: 71824
diff changeset
   213
  case 5 thus ?case by (simp)
71814
a9df6686ed0e AVL trees with balance tags
nipkow
parents:
diff changeset
   214
next
a9df6686ed0e AVL trees with balance tags
nipkow
parents:
diff changeset
   215
  case 6 thus ?case by (simp add: avl_insert)
a9df6686ed0e AVL trees with balance tags
nipkow
parents:
diff changeset
   216
next
a9df6686ed0e AVL trees with balance tags
nipkow
parents:
diff changeset
   217
  case 7 thus ?case by (simp add: avl_delete)
a9df6686ed0e AVL trees with balance tags
nipkow
parents:
diff changeset
   218
qed
a9df6686ed0e AVL trees with balance tags
nipkow
parents:
diff changeset
   219
a9df6686ed0e AVL trees with balance tags
nipkow
parents:
diff changeset
   220
end