src/HOL/Data_Structures/Tree2.thy
author nipkow
Sun, 22 Sep 2019 16:25:09 +0200
changeset 70742 e21c6b677c79
parent 68998 818898556504
child 70744 b605c9cf82a2
permissions -rw-r--r--
added function

theory Tree2
imports Main
begin

datatype ('a,'b) tree =
  Leaf ("\<langle>\<rangle>") |
  Node "('a,'b)tree" 'a 'b "('a,'b) tree" ("(1\<langle>_,/ _,/ _,/ _\<rangle>)")

fun inorder :: "('a,'b)tree \<Rightarrow> 'a list" where
"inorder Leaf = []" |
"inorder (Node l a _ r) = inorder l @ a # inorder r"

fun height :: "('a,'b) tree \<Rightarrow> nat" where
"height Leaf = 0" |
"height (Node l a _ r) = max (height l) (height r) + 1"

fun set_tree :: "('a,'b) tree \<Rightarrow> 'a set" where
"set_tree Leaf = {}" |
"set_tree (Node l a _ r) = Set.insert a (set_tree l \<union> set_tree r)"

fun bst :: "('a::linorder,'b) tree \<Rightarrow> bool" where
"bst Leaf = True" |
"bst (Node l a _ r) = (bst l \<and> bst r \<and> (\<forall>x \<in> set_tree l. x < a) \<and> (\<forall>x \<in> set_tree r. a < x))"

fun size1 :: "('a,'b) tree \<Rightarrow> nat" where
"size1 \<langle>\<rangle> = 1" |
"size1 \<langle>l, _, _, r\<rangle> = size1 l + size1 r"

fun complete :: "('a,'b) tree \<Rightarrow> bool" where
"complete Leaf = True" |
"complete (Node l _ _ r) = (complete l \<and> complete r \<and> height l = height r)"

lemma size1_size: "size1 t = size t + 1"
by (induction t) simp_all

lemma size1_ge0[simp]: "0 < size1 t"
by (simp add: size1_size)

lemma finite_set_tree[simp]: "finite(set_tree t)"
by(induction t) auto

end