insertion sort - Agda Programming- Proving Insertionsort makes 3 or less comparisons on a list of size 3 -
good evening fellows,
i attempting prove insertionsort perform <= 3 comparisons in list of size 3 while sorting. last part of project , cannot make headway on it. after spending fair amount of time pursuing incorrect approach, instructor informed me may accomplished writing helper function assist. unfortunately have not come piece of code help. if can offer advice or assistance, , appreciated. code follows. thanks!
insert : ℕ → 𝕃 ℕ → 𝕃 ℕ × ℕ insert x (h :: t) = if h < x (x :: h :: t , 1) else let r = insert x t in h :: (fst r) , 1 + snd r insert x [] = x :: [] , 0 insertionsort : 𝕃 ℕ → 𝕃 ℕ × ℕ insertionsort [] = [] , 0 insertionsort (h :: t) insertionsort t insertionsort (h :: t) | t' , c1 insert h t' insertionsort (h :: t) | t' , c1 | r , c2 = r , c1 + c2 examplethm : ∀(x y z c : ℕ)(r : 𝕃 ℕ) → insertionsort (x :: y :: z :: []) ≡ r , c → c ≤ 3 ≡ tt examplethm x y z = ?`
all comparisons done in course of insertionsort
done in course of subordinate calls insert
. may establish useful fact comparison cost of insert
. if can bound cost of each call insert
, should able combine bounded partial costs make bounded total cost. in case instructor concerned helping much, let me summarize saying saying structure of proof has follow structure of program.
Comments
Post a Comment