theory Tree23_Map imports
Tree23_Set
Map_Specs begin
fun lookup :: "('a::linorder * 'b) tree23 → 'a → 'b option"where "lookup Leaf x = None" | "lookup (Node2 l (a,b) r) x = (case cmp x a of LT → lookup l x | GT → lookup r x | EQ → Some b)" | "lookup (Node3 l (a1,b1) m (a2,b2) r) x = (case cmp x a1 of LT → lookup l x | EQ → Some b1 | GT → (case cmp x a2 of LT → lookup m x | EQ → Some b2 | GT → lookup r x))"
fun upd :: "'a::linorder → 'b → ('a*'b) tree23 → ('a*'b) upi"where "upd x y Leaf = Of Leaf (x,y) Leaf" | "upd x y (Node2 l ab r) = (case cmp x (fst ab) of LT → (case upd x y l of Eqi l' => Eqi (Node2 l' ab r) | Of l1 ab' l2 => Eqi (Node3 l1 ab' l2 ab r)) | EQ → Eqi (Node2 l (x,y) r) | GT → (case upd x y r of Eqi r' => Eqi (Node2 l ab r') | Of r1 ab' r2 => Eqi (Node3 l ab r1 ab' r2)))" | "upd x y (Node3 l ab1 m ab2 r) = (case cmp x (fst ab1) of LT → (case upd x y l of Eqi l' => Eqi (Node3 l' ab1 m ab2 r) | Of l1 ab' l2 => Of (Node2 l1 ab' l2) ab1 (Node2 m ab2 r)) | EQ → Eqi (Node3 l (x,y) m ab2 r) | GT → (case cmp x (fst ab2) of LT → (case upd x y m of Eqi m' => Eqi (Node3 l ab1 m' ab2 r) | Of m1 ab' m2 => Of (Node2 l ab1 m1) ab' (Node2 m2 ab2 r)) | EQ → Eqi (Node3 l ab1 m (x,y) r) | GT → (case upd x y r of Eqi r' => Eqi (Node3 l ab1 m ab2 r') | Of r1 ab' r2 => Of (Node2 l ab1 m) ab2 (Node2 r1 ab' r2))))"
definition update :: "'a::linorder → 'b → ('a*'b) tree23 → ('a*'b) tree23"where "update a b t = treei(upd a b t)"
fun del :: "'a::linorder → ('a*'b) tree23 → ('a*'b) upd"where "del x Leaf = Eqd Leaf" | "del x (Node2 Leaf ab1 Leaf) = (if x=fst ab1 then Uf Leaf else Eqd(Node2 Leaf ab1 Leaf))" | "del x (Node3 Leaf ab1 Leaf ab2 Leaf) = Eqd(if x=fst ab1 then Node2 Leaf ab2 Leaf else if x=fst ab2 then Node2 Leaf ab1 Leaf else Node3 Leaf ab1 Leaf ab2 Leaf)" | "del x (Node2 l ab1 r) = (case cmp x (fst ab1) of LT → node21 (del x l) ab1 r | GT → node22 l ab1 (del x r) | EQ → let (ab1',t) = split_min r in node22 l ab1' t)" | "del x (Node3 l ab1 m ab2 r) = (case cmp x (fst ab1) of LT → node31 (del x l) ab1 m ab2 r | EQ → let (ab1',m') = split_min m in node32 l ab1' m' ab2 r | GT → (case cmp x (fst ab2) of LT → node32 l ab1 (del x m) ab2 r | EQ → let (ab2',r') = split_min r in node33 l ab1 m ab2' r' | GT → node33 l ab1 m ab2 (del x r)))"
definition delete :: "'a::linorder → ('a*'b) tree23 → ('a*'b) tree23"where "delete x t = treed(del x t)"
subsection‹Functional Correctness›
lemma lookup_map_of: "sorted1(inorder t) ==> lookup t x = map_of (inorder t) x" by (induction t) (auto simp: map_of_simps split: option.split)
lemma inorder_upd: "sorted1(inorder t) ==> inorder(treei(upd x y t)) = upd_list x y (inorder t)" by(induction t) (auto simp: upd_list_simps split: upi.splits)
corollary inorder_update: "sorted1(inorder t) ==> inorder(update x y t) = upd_list x y (inorder t)" by(simp add: update_def inorder_upd)
lemma inorder_del: "[ complete t ; sorted1(inorder t) ]==> inorder(treed (del x t)) = del_list x (inorder t)" by(induction t rule: del.induct)
(auto simp: del_list_simps inorder_nodes split_minD split!: if_split prod.splits)
corollary inorder_delete: "[ complete t ; sorted1(inorder t) ]==> inorder(delete x t) = del_list x (inorder t)" by(simp add: delete_def inorder_del)
subsection‹Balancedness›
lemma complete_upd: "complete t ==> complete (treei(upd x y t)) ∧ hi(upd x y t) = height t" by (induct t) (auto split!: if_split upi.split)(* 16 secs in 2015 *)
corollary complete_update: "complete t ==> complete (update x y t)" by (simp add: update_def complete_upd)
lemma height_del: "complete t ==> hd(del x t) = height t" by(induction x t rule: del.induct)
(auto simp add: heights max_def height_split_min split: prod.split)
lemma complete_treed_del: "complete t ==> complete(treed(del x t))" by(induction x t rule: del.induct)
(auto simp: completes complete_split_min height_del height_split_min split: prod.split)
corollary complete_delete: "complete t ==> complete(delete x t)" by(simp add: delete_def complete_treed_del)
subsection‹Overall Correctness›
interpretation M: Map_by_Ordered where empty = empty and lookup = lookup and update = update and delete = delete and inorder = inorder and inv = complete proof (standard, goal_cases) case1thus ?caseby(simp add: empty_def) next case2thus ?caseby(simp add: lookup_map_of) next case3thus ?caseby(simp add: inorder_update) next case4thus ?caseby(simp add: inorder_delete) next case5thus ?caseby(simp add: empty_def) next case6thus ?caseby(simp add: complete_update) next case7thus ?caseby(simp add: complete_delete) qed
end
Messung V0.5 in Prozent
¤ Dauer der Verarbeitung: 0.12 Sekunden
(vorverarbeitet am 2026-06-30)
¤
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.