gpt4 book ai didi

java - 优先级队列的堆实现?

转载 作者:行者123 更新时间:2023-12-02 04:09:41 25 4
gpt4 key购买 nike

我正在尝试使用堆(根小于子项)实现患者队列,但是当我打印队列时,患者队列看起来没有优先级。

插入方法工作正常,但入队没有优先考虑项目?

// Heap class
.....some code

//insertion: inserts patients into minimum heap using an array.
//expand array as needed and reorder heap to maintain its properties

public void insert(ER_Patient patient) {
if(heapArray.length==count)
expand();
heapArray[count] = patient;
count++;
if(count>1)
reorder();
}

// Priority Queue class
.......some code

public void enqueue(ER_Patient patient) {
try {
heap.insert(patient);
} catch (NoSuchCategoryException exception) {
System.out.println("Can't enqueue");
}

}

// copy content of original's array to a new larger array
private void expand(){
ER_Patient[] tempArray = new ER_Patient[heapArray.length * 8];
for(int i=0;i<=heapArray.length-1;i++)
tempArray[i]=heapArray[i];
heapArray = tempArray;
}

// maintain heap property by keeping roots smaller than children
private void reorder(){
ER_Patient temp;
int next = count -1;
temp = heapArray[next];
while((next!=0) && temp.compareTo(heapArray[(next-1)/2])<0){
heapArray[next] = heapArray[(next-1)/2];
next = (next-1)/2;
}
heapArray[next] = temp;
}

最佳答案

This is how I print:

public void display(Heap h)
{
for(int i=0;i<h.count;i++)
System.out.println(heapArray[i]);
}

错误。

除非您成功删除第一个项目并打印它,否则您将不会获得有序列表。堆数组本身不是顺序的。

关于java - 优先级队列的堆实现?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33910821/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com