欸不是
真的夠了
都把課本有的資料結構都寫了
都直接寫到 Btree B+ tree 還有 fibonacci heap 了
真的是沒梗了
難怪大家都寫演算法XD
FIB-HEAP-EXTRACT-MIN (H)
z = H.min
if z != NIL
for each child x of z
add x to the root list of H
x.p = NIL
remove z from the root list of H
if z == z.right
H.min = NIL
else H.min = z.right
CONSOLIDATE (H)
H.n = H.n - 1
return z