需要帮助计算 MaxHeap 中的交换次数

Need Help Counting number of swaps in a MaxHeap

我目前正在做一个项目,我必须在其中创建一个最大堆。我目前正在使用教科书版本的堆,它看起来像:

public MaxHeap(int initialCapacity) {
    if (initialCapacity < DEFAULT_CAPACITY)
        initialCapacity = DEFAULT_CAPACITY;
    else
        checkCapacity(initialCapacity);

    @SuppressWarnings("unchecked")
    T[] tempHeap = (T[]) new Comparable[initialCapacity + 1];
    heap = tempHeap;
    lastIndex = 0;
    initialized = true;
}

public T getMax() {
    checkInitialization();
    T root = null;
    if (!isEmpty())
        root = heap[1];
    return root;
}

public boolean isEmpty() {
    return lastIndex < 1;
}

public int getSize() {
    return lastIndex;
}

public void clear() {
    checkInitialization();
    while (lastIndex > -1) {
        heap[lastIndex] = null;
        lastIndex--;
    }
    lastIndex = 0;
}

public void add(T newEntry) {
    checkInitialization();
    int newIndex = lastIndex + 1;
    int parentIndex = newIndex / 2;
    while ((parentIndex > 0) && newEntry.compareTo(heap[parentIndex]) > 0) {
        heap[newIndex] = heap[parentIndex];
        newIndex = parentIndex;
        parentIndex = newIndex / 2;
    }
    heap[newIndex] = newEntry;
    lastIndex++;
    ensureCapacity();
}

public int getSwaps()
{
    return swaps;
}

public T removeMax() {
    checkInitialization();
    T root = null;
    if (!isEmpty()) {
        root = heap[1];
        heap[1] = heap[lastIndex];
        lastIndex--;
        reheap(1);
    }
    return root;
}

private void reheap(int rootIndex) {
    boolean done = false;
    T orphan = heap[rootIndex];
    int leftChildIndex = 2 * rootIndex;

    while (!done && (leftChildIndex <= lastIndex)) {
        int largerChildIndex = leftChildIndex;
        int rightChildIndex = leftChildIndex + 1;
        if ((rightChildIndex <= lastIndex) && heap[rightChildIndex].compareTo(heap[largerChildIndex]) > 0) {
            largerChildIndex = rightChildIndex;
        }
        if (orphan.compareTo(heap[largerChildIndex]) < 0) {
            heap[rootIndex] = heap[largerChildIndex];
            rootIndex = largerChildIndex;
            leftChildIndex = 2 * rootIndex;
        } else
            done = true;
    }
    heap[rootIndex] = orphan;

}

我是否应该在多个地方计算交换并打印总金额,如果是的话我应该在哪里计算它们?我之前曾尝试在 add 方法中仅枚举 swap++,但我认为这不是正确的做法。

您必须计算 add(T newEntry) 方法和从 removeMax 方法调用的 reHeap 方法中的交换。

reHeap 中,您从顶部开始,当您从 removeMax 调用它时,在删除最大值(在 Max Heap 的情况下)之后,您将根替换为最后一个元素,然后您需要平衡堆.因此堆递归下降到最后一层以平衡,这可能需要交换。

编辑:

reHeap 的以下代码块内添加交换:

if (orphan.compareTo(heap[largerChildIndex]) < 0) {
        heap[rootIndex] = heap[largerChildIndex];
        rootIndex = largerChildIndex;
        leftChildIndex = 2 * rootIndex;
        // increment the swap here as inside this block of reHeap only swap takes place.
        swap++
 }

这些是实施它的正确方法吗?

所以添加方法是:

public void add(T newEntry) {
checkInitialization();
int newIndex = lastIndex + 1;
int parentIndex = newIndex / 2;
while ((parentIndex > 0) && newEntry.compareTo(heap[parentIndex]) > 0) {
    heap[newIndex] = heap[parentIndex];
    newIndex = parentIndex;
    parentIndex = newIndex / 2;
    swap++;
}
heap[newIndex] = newEntry;
lastIndex++;
ensureCapacity();
}

重新堆将是:

private void reheap(int rootIndex) {
boolean done = false;
T orphan = heap[rootIndex];
int leftChildIndex = 2 * rootIndex;

while (!done && (leftChildIndex <= lastIndex)) {
    int largerChildIndex = leftChildIndex;
    int rightChildIndex = leftChildIndex + 1;
    if ((rightChildIndex <= lastIndex) && heap[rightChildIndex].compareTo(heap[largerChildIndex]) > 0) {
        largerChildIndex = rightChildIndex;
    }
    if (orphan.compareTo(heap[largerChildIndex]) < 0) {
        heap[rootIndex] = heap[largerChildIndex];
        rootIndex = largerChildIndex;
        leftChildIndex = 2 * rootIndex;
        swap++;
    } else
        done = true;
}
heap[rootIndex] = orphan;

}