我正在尝试使用Java中的此数组创建和排序堆。我不断
线程“主”中的异常java.lang.ArrayIndexOutOfBoundsException:42
在HeapSort.exchange(HeapSort.java:28)
在HeapSort.Max_Heapify(HeapSort.java:22)
在HeapSort.Sort(HeapSort.java:36)处HeapSort.Build_Heap处
在HeapSort.main(HeapSort.java:46)
我不确定错误是从哪里来的。
public class HeapSort {
public static int n;
public static int[] a;
public static int largest;
public static void Build_Heap(int[] a){
n = a.length-1;
for(int i = n/2; i >= 0; i--){
Max_Heapify(a,i);
}
}
public static void Max_Heapify(int[] a,int i){
int left = 2*i;
int right = 2*i +1;
if(left <= n && a[left] > a[i])
largest = left;
if(right <=n && a[right] > a[largest])
largest = right;
if(largest != i)
exchange (a[i],a[largest]);
Max_Heapify(a,largest);
}
private static void exchange(int i, int j) {
int temp = a[i];
a[i] = a[j];
a[j] = temp;
// TODO Auto-generated method stub
}
public static void Sort(int[] a0){
a = a0;
Build_Heap(a);
for(int i = n; i > 0; i--){
exchange(0,i);
n = n-1;
Max_Heapify(a,0);
}
}
public static void main(String[] args){
int[] a1 = {3,55,6,42,34,56,34};
Sort(a1);
for(int i = 0; i < a1.length; i++){
System.out.print(a1[i] + " ");
}
}
}
最佳答案
您在exchange()
中遇到错误。该方法的参数i
和j
看起来像是数组a
的索引。但是,您正在调用方法exchange(a[i],a[largest])
,该方法将数组中的值传递到索引i
和largest
,而不是将实际索引i
和largest
传递给该方法。
尝试呼叫exchange(i,largest)
之类的交换
关于java - 在堆排序的实现中出现错误,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/35232416/