Exercise 6.5.4
Why do we bother setting the key of the inserted node to $-\infty$ in line 2 of
MAX-HEAP-INSERT
when the next thing we do is increase its key to the desired value?
In order to pass the guard clause. Otherwise we have to drop the check if $key < A[i]$.