1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
|
import Common.Nat
namespace BinaryHeap
inductive BalancedTree (α : Type u) : Nat → Type u
| leaf : BalancedTree α 0
| branch :
(val : α)
→ (left : BalancedTree α n)
→ (right : BalancedTree α m)
→ m ≤ n
→ n < 2*(m+1)
→ (n+1).isPowerOfTwo ∨ (m+1).isPowerOfTwo
→ BalancedTree α (n+m+1)
def BalancedTree.root (tree : BalancedTree α n) (_ : 0 < n) : α := match tree with
| .branch a _ _ _ _ _ => a
structure WellDefinedLt (lt : α → α → Bool) : Prop where
not_equal : ∀ (a b : α), lt a b ↔ ¬lt b a
transitive : ∀ (a b c : α), lt a b ∧ lt b c → lt a c
def HeapPredicate {α : Type u} {n : Nat} (heap : BalancedTree α n) (lt : α → α → Bool) : Prop :=
match heap with
| .leaf => True
| .branch a left right _ _ _ =>
HeapPredicate left lt ∧ HeapPredicate right lt ∧ notSmallerOrLeaf a left ∧ notSmallerOrLeaf a right
where notSmallerOrLeaf := λ {m : Nat} (v : α) (h : BalancedTree α m) ↦ match m with
| .zero => true
| .succ o => !lt (h.root (by simp_arith)) v
structure BinaryHeap (α : Type u) (lt : α → α → Bool) (n : Nat) where
tree : BalancedTree α n
valid : HeapPredicate tree lt
wellDefinedLt : WellDefinedLt lt
/--Please do not use this for anything meaningful. It's a debug function, with horrible performance.-/
instance {α : Type u} [ToString α] : ToString (BalancedTree α n) where
toString := λt ↦
--not very fast, doesn't matter, is for debugging
let rec max_width := λ {m : Nat} (t : (BalancedTree α m)) ↦ match m, t with
| 0, .leaf => 0
| (_+_+1), BalancedTree.branch a left right _ _ _ => max (ToString.toString a).length $ max (max_width left) (max_width right)
let max_width := max_width t
let lines_left := Nat.log2 (n+1).nextPowerOfTwo
let rec print_line := λ (mw : Nat) {m : Nat} (t : (BalancedTree α m)) (lines : Nat) ↦
match m, t with
| 0, _ => ""
| (_+_+1), BalancedTree.branch a left right _ _ _ =>
let thisElem := ToString.toString a
let thisElem := (List.replicate (mw - thisElem.length) ' ').asString ++ thisElem
let elems_in_last_line := if lines == 0 then 0 else 2^(lines-1)
let total_chars_this_line := elems_in_last_line * mw + 2*(elems_in_last_line)+1
let left_offset := (total_chars_this_line - mw) / 2
let whitespaces := max left_offset 1
let whitespaces := List.replicate whitespaces ' '
let thisline := whitespaces.asString ++ thisElem ++ whitespaces.asString ++"\n"
let leftLines := (print_line mw left (lines-1) ).splitOn "\n"
let rightLines := (print_line mw right (lines-1) ).splitOn "\n" ++ [""]
let combined := leftLines.zip (rightLines)
let combined := combined.map λ (a : String × String) ↦ a.fst ++ a.snd
thisline ++ combined.foldl (· ++ "\n" ++ ·) ""
print_line max_width t lines_left
/-- Extracts the element count. For when pattern matching is too much work. -/
def BalancedTree.length : BalancedTree α n → Nat := λ_ ↦ n
/--Creates an empty BalancedTree. Needs the heap predicate as parameter.-/
abbrev BalancedTree.empty {α : Type u} := BalancedTree.leaf (α := α)
theorem BalancedTree.emptyIsHeap {α : Type u} (lt : α → α → Bool) : HeapPredicate BalancedTree.empty lt := by trivial
theorem power_of_two_mul_two_lt {n m : Nat} (h₁ : m.isPowerOfTwo) (h₂ : n < 2*m) (h₃ : ¬(n+1).isPowerOfTwo) : n+1 < 2*m :=
if h₄ : n+1 > 2*m then by
have h₂ := Nat.succ_le_of_lt h₂
rewrite[←Nat.not_ge_eq] at h₂
simp_arith at h₄
contradiction
else if h₅ : n+1 = 2*m then by
have h₆ := Nat.mul2_isPowerOfTwo_of_isPowerOfTwo h₁
rewrite[Nat.mul_comm 2 m] at h₅
rewrite[←h₅] at h₆
contradiction
else by
simp_arith at h₄
exact Nat.lt_of_le_of_ne h₄ h₅
theorem power_of_two_mul_two_le {n m : Nat} (h₁ : (n+1).isPowerOfTwo) (h₂ : n < 2*(m+1)) (h₃ : ¬(m+1).isPowerOfTwo) (h₄ : m > 0): n < 2*m :=
if h₅ : n > 2*m then by
simp_arith at h₂
simp_arith at h₅
have h₆ : n+1 = 2*(m+1) := by simp_arith[Nat.le_antisymm h₂ h₅]
rewrite[h₆] at h₁
rewrite[←(Nat.mul2_ispowerOfTwo_iff_isPowerOfTwo (m+1))] at h₁
contradiction
else if h₆ : n = 2*m then by
-- since (n+1) is a power of 2, n cannot be an even number, but n = 2*m means it's even
-- ha, thought I wouldn't see that, didn't you? Thought you're smarter than I, computer?
have h₇ : n > 0 := by rewrite[h₆]
apply Nat.mul_lt_mul_of_pos_left h₄ (by decide :2 > 0)
have h₈ : n ≠ 0 := Ne.symm $ Nat.ne_of_lt h₇
have h₉ := Nat.isPowerOfTwo_even_or_one h₁
simp[h₈] at h₉
have h₉ := Nat.pred_even_odd h₉ (by simp_arith[h₇])
simp at h₉
have h₁₀ := Nat.mul_2_is_even h₆
have h₁₀ := Nat.even_not_odd_even.mp h₁₀
contradiction
else by
simp[Nat.not_gt_eq] at h₅
have h₅ := Nat.eq_or_lt_of_le h₅
simp[h₆] at h₅
assumption
/--Adds a new element to a given BalancedTree.-/
private def BalancedTree.heapInsert (lt : α → α → Bool) (elem : α) (heap : BalancedTree α o) : BalancedTree α (o+1) :=
match o, heap with
| 0, .leaf => BalancedTree.branch elem (BalancedTree.leaf) (BalancedTree.leaf) (by simp) (by simp) (by simp[Nat.one_isPowerOfTwo])
| (n+m+1), .branch a left right p max_height_difference subtree_complete =>
let (elem, a) := if lt elem a then (a, elem) else (elem, a)
-- okay, based on n and m we know if we want to add left or right.
-- the left tree is full, if (n+1) is a power of two AND n != m
let leftIsFull := (n+1).nextPowerOfTwo = n+1
if r : m < n ∧ leftIsFull then
have s : (m + 1 < n + 1) = (m < n) := by simp_arith
have q : m + 1 ≤ n := by apply Nat.le_of_lt_succ
rewrite[Nat.succ_eq_add_one]
rewrite[s]
simp[r]
have difference_decreased := Nat.le_succ_of_le $ Nat.le_succ_of_le max_height_difference
let result := branch a left (right.heapInsert lt elem) (q) difference_decreased (by simp[(Nat.power_of_two_iff_next_power_eq (n+1)), r])
result
else
have q : m ≤ n+1 := by apply (Nat.le_of_succ_le)
simp_arith[p]
have right_is_power_of_two : (m+1).isPowerOfTwo :=
if s : n = m then by
rewrite[s] at subtree_complete
simp at subtree_complete
exact subtree_complete
else if h₁ : leftIsFull then by
simp at h₁
rewrite[Decidable.not_and_iff_or_not (m<n) leftIsFull] at r
cases r
case inl h₂ => rewrite[Nat.not_lt_eq] at h₂
have h₃ := Nat.not_le_of_gt $ Nat.lt_of_le_of_ne h₂ s
contradiction
case inr h₂ => simp at h₂
contradiction
else by
simp at h₁
rewrite[←Nat.power_of_two_iff_next_power_eq] at h₁
cases subtree_complete
case inl => contradiction
case inr => trivial
have still_in_range : n + 1 < 2 * (m + 1) := by
rewrite[Decidable.not_and_iff_or_not (m<n) leftIsFull] at r
cases r
case inl h₁ => rewrite[Nat.not_gt_eq n m] at h₁
simp_arith[Nat.le_antisymm h₁ p]
case inr h₁ => simp[←Nat.power_of_two_iff_next_power_eq] at h₁
simp[h₁] at subtree_complete
exact power_of_two_mul_two_lt subtree_complete max_height_difference h₁
let result := branch a (left.heapInsert lt elem) right q still_in_range (Or.inr right_is_power_of_two)
have letMeSpellItOutForYou : n + 1 + m + 1 = n + m + 1 + 1 := by simp_arith
letMeSpellItOutForYou ▸ result
private theorem BalancedTree.rootSeesThroughCast
(n m : Nat)
(h₁ : n+1+m+1=n+m+1+1)
(h₂ : 0<n+1+m+1)
(h₃ : 0<n+m+1+1)
(heap : BalancedTree α (n+1+m+1)) : (h₁▸heap).root h₃ = heap.root h₂ := by
induction m generalizing n
case zero => simp
case succ o ho =>
have h₄ := ho (n+1)
have h₅ : n+1+1+o+1 = n+1+(Nat.succ o)+1 := by simp_arith
rewrite[h₅] at h₄
have h₆ : n + 1 + o + 1 + 1 = n + (Nat.succ o + 1 + 1) := by simp_arith
rewrite[h₆] at h₄
revert heap h₁ h₂ h₃
assumption
theorem BalancedTree.heapInsertRootSameOrElem (elem : α) (heap : BalancedTree α o) (lt : α → α → Bool) (h₂ : 0 < o): (BalancedTree.root (heap.heapInsert lt elem) (by simp_arith) = elem) ∨ (BalancedTree.root (heap.heapInsert lt elem) (by simp_arith) = BalancedTree.root heap h₂) :=
match o, heap with
| (n+m+1), .branch v l r _ _ _ =>
if h : m < n ∧ Nat.nextPowerOfTwo (n + 1) = n + 1 then by
unfold BalancedTree.heapInsert
simp[h]
cases (lt elem v) <;> simp[instDecidableEqBool, Bool.decEq, BalancedTree.root]
else by
unfold BalancedTree.heapInsert
simp[h]
rw[rootSeesThroughCast n m (by simp_arith) (by simp_arith) (by simp_arith)]
cases (lt elem v)
<;> simp[instDecidableEqBool, Bool.decEq, BalancedTree.root]
theorem BalancedTree.heapInsertEmptyElem (elem : α) (heap : BalancedTree α o) (lt : α → α → Bool) (h₂ : ¬0 < o) : (BalancedTree.root (heap.heapInsert lt elem) (by simp_arith) = elem) :=
have : o = 0 := Nat.eq_zero_of_le_zero $ (Nat.not_lt_eq 0 o).mp h₂
match o, heap with
| 0, .leaf => by simp[BalancedTree.heapInsert, root]
private theorem HeapPredicate.notSmallerOrLeaf_transitive (h₁ : WellDefinedLt lt) : lt a b → HeapPredicate.notSmallerOrLeaf lt b h → HeapPredicate.notSmallerOrLeaf lt a h := by
have h₂ := h₁.not_equal
have h₁ := h₁.transitive
unfold notSmallerOrLeaf
rename_i n _
cases n <;> simp
rename_i n
simp at h₂
intros h₃ h₄
rw[←h₂] at *
have h₅ := h₁ a b (h.root (by simp_arith))
exact h₅ ⟨h₃, h₄⟩
private theorem HeapPredicate.seesThroughCast
(n m : Nat)
(lt : α → α → Bool)
(h₁ : n+1+m+1=n+m+1+1)
(h₂ : 0<n+1+m+1)
(h₃ : 0<n+m+1+1)
(heap : BalancedTree α (n+1+m+1)) : HeapPredicate heap lt → HeapPredicate (h₁▸heap) lt := by
unfold HeapPredicate
intro h₄
induction m generalizing n
case zero => simp[h₄]
case succ o ho =>
have h₅ := ho (n+1)
have h₆ : n+1+1+o+1 = n+1+(Nat.succ o)+1 := by simp_arith
rw[h₆] at h₅
have h₆ : n + 1 + o + 1 + 1 = n + (Nat.succ o + 1 + 1) := by simp_arith
rewrite[h₆] at h₅
revert heap h₁ h₂ h₃
assumption
theorem BalancedTree.heapInsertIsHeap {elem : α} {heap : BalancedTree α o} {lt : α → α → Bool} (h₁ : HeapPredicate heap lt) (h₂ : WellDefinedLt lt) : HeapPredicate (heap.heapInsert lt elem) lt :=
match o, heap with
| 0, .leaf => by trivial
| (n+m+1), .branch v l r m_le_n _ _ =>
if h₃ : m < n ∧ Nat.nextPowerOfTwo (n + 1) = n + 1 then by
unfold BalancedTree.heapInsert
simp[h₃]
cases h₄ : (lt elem v) <;> simp[instDecidableEqBool, Bool.decEq]
<;> unfold HeapPredicate
<;> unfold HeapPredicate at h₁
case true =>
have h₅ : (HeapPredicate (BalancedTree.heapInsert lt v r) lt) := BalancedTree.heapInsertIsHeap h₁.right.left h₂
simp[h₁, h₅]
simp[HeapPredicate.notSmallerOrLeaf_transitive h₂ h₄ h₁.right.right.left]
have h₇ := h₂.not_equal
simp at h₇
cases m
case zero =>
have h₆ := heapInsertEmptyElem v r lt (by simp_arith)
simp[HeapPredicate.notSmallerOrLeaf, h₆]
rw[←h₇]
assumption
case succ _ =>
simp[HeapPredicate.notSmallerOrLeaf]
cases heapInsertRootSameOrElem v r lt (by simp_arith)
<;> rename_i h₆
<;> simp[h₆]
<;> rw[←h₇]
. assumption
apply h₂.transitive (b := v)
simp[h₄, h₇]
have h₉ := h₁.right.right.right
unfold HeapPredicate.notSmallerOrLeaf at h₉
simp at h₉
assumption
case false =>
have h₅ : (HeapPredicate (BalancedTree.heapInsert lt elem r) lt) := BalancedTree.heapInsertIsHeap h₁.right.left h₂
simp[h₁, h₅]
unfold HeapPredicate.notSmallerOrLeaf
simp_arith
cases h₆: (0 < m : Bool)
case false =>
have h₆ : ¬0 < m := of_decide_eq_false h₆
have h₇ := heapInsertEmptyElem elem r lt h₆
simp[*]
case true =>
simp at h₆
have h₇ := heapInsertRootSameOrElem elem r lt h₆
cases h₇ <;> simp[*]
have h₈ := h₁.right.right.right
unfold HeapPredicate.notSmallerOrLeaf at h₈
simp at h₈
cases m <;> simp at h₈
case inr.zero => contradiction
case inr.succ => simp[h₈]
else by
unfold BalancedTree.heapInsert
simp[h₃]
apply HeapPredicate.seesThroughCast <;> try simp_arith[h₂] --gets rid of annoying cast.
-- this should be more or less identical to the other branch, just with l r m n swapped.
-- todo: Try to make this shorter...
cases h₄ : (lt elem v) <;> simp[instDecidableEqBool, Bool.decEq]
<;> unfold HeapPredicate
<;> unfold HeapPredicate at h₁
case a.true =>
have h₅ : (HeapPredicate (BalancedTree.heapInsert lt v l) lt) := BalancedTree.heapInsertIsHeap h₁.left h₂
simp[h₁, h₅]
simp[HeapPredicate.notSmallerOrLeaf_transitive h₂ h₄ h₁.right.right.right]
have h₇ := h₂.not_equal
simp at h₇
cases n
case zero =>
have h₆ := heapInsertEmptyElem v l lt (by simp_arith)
simp[HeapPredicate.notSmallerOrLeaf, h₆]
rw[←h₇]
assumption
case succ _ =>
simp[HeapPredicate.notSmallerOrLeaf]
cases heapInsertRootSameOrElem v l lt (by simp_arith)
<;> rename_i h₆
<;> simp[h₆]
<;> rw[←h₇]
. assumption
apply h₂.transitive (b := v)
simp[h₄, h₇]
have h₉ := h₁.right.right.left
unfold HeapPredicate.notSmallerOrLeaf at h₉
simp at h₉
assumption
case a.false =>
have h₅ : (HeapPredicate (BalancedTree.heapInsert lt elem l) lt) := BalancedTree.heapInsertIsHeap h₁.left h₂
simp[h₁, h₅]
unfold HeapPredicate.notSmallerOrLeaf
simp_arith
cases h₆: (0 < n : Bool)
case false =>
have h₆ : ¬0 < n := of_decide_eq_false h₆
have h₇ := heapInsertEmptyElem elem l lt h₆
simp[*]
case true =>
simp at h₆
have h₇ := heapInsertRootSameOrElem elem l lt h₆
cases h₇ <;> simp[*]
have h₈ := h₁.right.right.left
unfold HeapPredicate.notSmallerOrLeaf at h₈
simp at h₈
cases n <;> simp at h₈
case inr.zero => contradiction
case inr.succ => simp[h₈]
def BinaryHeap.insert {α : Type u} {lt : α → α → Bool} {n : Nat} : α → BinaryHeap α lt n → BinaryHeap α lt (n+1)
| elem, BinaryHeap.mk tree valid wellDefinedLt =>
let valid := tree.heapInsertIsHeap valid wellDefinedLt
let tree := tree.heapInsert lt elem
{tree, valid, wellDefinedLt}
/--Helper function for BalancedTree.indexOf.-/
def BalancedTree.indexOfAux {α : Type u} [BEq α] (elem : α) (heap : BalancedTree α o) (currentIndex : Nat) : Option (Fin (o+currentIndex)) :=
match o, heap with
| 0, .leaf => none
| (n+m+1), .branch a left right _ _ _ =>
if a == elem then
let result := Fin.ofNat' currentIndex (by simp_arith)
some result
else
let found_left := left.indexOfAux elem (currentIndex + 1)
let found_left : Option (Fin (n+m+1+currentIndex)) := found_left.map λ a ↦ Fin.ofNat' a (by simp_arith)
let found_right :=
found_left
<|>
(right.indexOfAux elem (currentIndex + n + 1)).map ((λ a ↦ Fin.ofNat' a (by simp_arith)) : _ → Fin (n+m+1+currentIndex))
found_right
/--Finds the first occurance of a given element in the heap and returns its index.-/
def BalancedTree.indexOf {α : Type u} [BEq α] (elem : α) (heap : BalancedTree α o) : Option (Fin o) :=
indexOfAux elem heap 0
private inductive Direction
| left
| right
deriving Repr
theorem two_n_not_zero_n_not_zero (n : Nat) (p : ¬2*n = 0) : (¬n = 0) := by
cases n
case zero => contradiction
case succ => simp
def BalancedTree.popLast {α : Type u} (heap : BalancedTree α (o+1)) : (α × BalancedTree α o) :=
match o, heap with
| (n+m), .branch a (left : BalancedTree α n) (right : BalancedTree α m) m_le_n max_height_difference subtree_complete =>
if p : 0 = (n+m) then
(a, p▸BalancedTree.leaf)
else
--let leftIsFull : Bool := (n+1).nextPowerOfTwo = n+1
let rightIsFull : Bool := (m+1).nextPowerOfTwo = m+1
have m_gt_0_or_rightIsFull : m > 0 ∨ rightIsFull := by cases m <;> simp_arith
if r : m < n ∧ rightIsFull then
--remove left
match n, left with
| (l+1), left =>
let (res, (newLeft : BalancedTree α l)) := left.popLast
have q : l + m + 1 = l + 1 +m := by simp_arith
have s : m ≤ l := match r with
| .intro a _ => by apply Nat.le_of_lt_succ
simp[a]
have rightIsFull : (m+1).isPowerOfTwo := by
have r := And.right r
simp[←Nat.power_of_two_iff_next_power_eq] at r
assumption
have l_lt_2_m_succ : l < 2 * (m+1) := by apply Nat.lt_of_succ_lt; assumption
(res, q▸BalancedTree.branch a newLeft right s l_lt_2_m_succ (Or.inr rightIsFull))
else
--remove right
have : m > 0 := by
cases m_gt_0_or_rightIsFull
case inl => assumption
case inr h => simp_arith [h] at r
-- p, r, m_le_n combined
-- r and m_le_n yield m == n and p again done
simp_arith
--clear left right heap lt a h rightIsFull
have n_eq_m : n = m := Nat.le_antisymm r m_le_n
rewrite[n_eq_m] at p
simp_arith at p
apply Nat.zero_lt_of_ne_zero
simp_arith[p]
apply (two_n_not_zero_n_not_zero m)
intro g
have g := Eq.symm g
revert g
assumption
match h₂ : m, right with
| (l+1), right =>
let (res, (newRight : BalancedTree α l)) := right.popLast
have s : l ≤ n := by have x := (Nat.add_le_add_left (Nat.zero_le 1) l)
have x := Nat.le_trans x m_le_n
assumption
have leftIsFull : (n+1).isPowerOfTwo := by
rewrite[Decidable.not_and_iff_or_not] at r
cases r
case inl h₁ => rewrite[Nat.not_lt_eq] at h₁
have h₂ := Nat.le_antisymm h₁ m_le_n
rewrite[←h₂] at subtree_complete
simp at subtree_complete
assumption
case inr h₁ => simp_arith[←Nat.power_of_two_iff_next_power_eq] at h₁
rewrite[h₂] at h₁
simp[h₁] at subtree_complete
assumption
have still_in_range : n < 2*(l+1) := by
rewrite[Decidable.not_and_iff_or_not (l+1<n) rightIsFull] at r
cases r with
| inl h₁ => simp_arith at h₁
have h₃ := Nat.le_antisymm m_le_n h₁
subst n
have h₄ := Nat.mul_lt_mul_of_pos_right (by decide : 1 < 2) this
simp at h₄
assumption
| inr h₁ => simp[←Nat.power_of_two_iff_next_power_eq, h₂] at h₁
apply power_of_two_mul_two_le <;> assumption
(res, BalancedTree.branch a left newRight s still_in_range (Or.inl leftIsFull))
/--Removes the element at a given index. Use `BalancedTree.indexOf` to find the respective index.-/
def BalancedTree.heapRemoveAt {α : Type u} (lt : α → α → Bool) {o : Nat} (index : Fin (o+1)) (heap : BalancedTree α (o+1)) : BalancedTree α o :=
-- first remove the last element and remember its value
sorry
-------------------------------------------------------------------------------------------------------
private def TestHeap :=
let ins : {n: Nat} → Nat → BalancedTree Nat n → BalancedTree Nat (n+1) := λ x y ↦ BalancedTree.heapInsert (.<.) x y
ins 5 BalancedTree.empty
|> ins 3
|> ins 7
|> ins 12
|> ins 2
|> ins 8
|> ins 97
|> ins 2
|> ins 64
|> ins 71
|> ins 21
|> ins 3
|> ins 4
|> ins 199
|> ins 24
|> ins 3
#eval TestHeap
#eval TestHeap.popLast
#eval TestHeap.indexOf 71
|