PairingHeap的编程实现
/**
* Implements a pairing heap.
* Supports a decreaseKey operation.
* Note that all "matching" is based on the compareTo method.
*/
public class PairingHeap {
private PairNode root;