Insert(H,x) H' = x H = Union(H, H')
Extract-Min(H) Find root x with minimum key in H ; O(lg n) Remove x from H ; H' = children of x in reverse order ; O(lg n) ; because children are Bk-1, Bk-2, ..., B0 Union(H, H') ; O(lg n)