左式堆



    public static HeapNode merge(HeapNode h1, HeapNode h2) {
        if (null == h1) {
            return h2;
        } else if (h2 == null) {
            return h1;
        } else { // 两个都不是null
            int v1 = h1.mValue;
            int v2 = h2.mValue;
            if (v1 <= v2) { // 拿他的
                h1.mRightChild = merge(h1.mRightChild, h2);
                if (npl(h1.mLeftChild) < npl(h1.mRightChild)) {
                    HeapNode node = h1.mLeftChild;
                    h1.mLeftChild = h1.mRightChild;
                    h1.mRightChild = node;
                }
                h1.mNpl = Math.min(npl(h1.mLeftChild), npl(h1.mRightChild)) + 1;
                return h1;
            } else {
                h2.mRightChild = merge(h1, h2.mRightChild);
                if (npl(h2.mLeftChild) < npl(h2.mRightChild)) {
                    HeapNode node = h2.mLeftChild;
                    h2.mLeftChild = h2.mRightChild;
                    h2.mRightChild = node;
                }
                h2.mNpl = Math.min(npl(h2.mLeftChild), npl(h2.mRightChild)) + 1;
                return h2;
            }
        }
    }
}
    public static HeapNode merge(HeapNode h1, HeapNode h2) {
        if (null == h1) {
            return h2;
        } else if (h2 == null) {
            return h1;
        } else { // 两个都不是null
            int v1 = h1.mValue;
            int v2 = h2.mValue;
            if (v1 <= v2) { // 拿他的
                h1.mRightChild = merge(h1.mRightChild, h2);
                if (npl(h1.mLeftChild) < npl(h1.mRightChild)) {
                    HeapNode node = h1.mLeftChild;
                    h1.mLeftChild = h1.mRightChild;
                    h1.mRightChild = node;
                }
                h1.mNpl = Math.min(npl(h1.mLeftChild), npl(h1.mRightChild)) + 1;
                return h1;
            } else {
                h2.mRightChild = merge(h1, h2.mRightChild);
                if (npl(h2.mLeftChild) < npl(h2.mRightChild)) {
                    HeapNode node = h2.mLeftChild;
                    h2.mLeftChild = h2.mRightChild;
                    h2.mRightChild = node;
                }
                h2.mNpl = Math.min(npl(h2.mLeftChild), npl(h2.mRightChild)) + 1;
                return h2;
            }
        }
    }
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值