QuickSort IndexOutOfBound异常arraylist
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了QuickSort IndexOutOfBound异常arraylist相关的知识,希望对你有一定的参考价值。
你好我试着编写QuickSort代码,但是我总是遇到一个超出范围的索引?我的代码如下:
public class QuickSort
{
public void quickSort(ArrayList<Integer> A, int p, int r)
{
if (p < r) {
int q = partition(A, p, r);
quickSort(A, p, q - 1);
quickSort(A, q + 1, r);
}
}
public int partition(ArrayList<Integer> A, int p, int r) {
int x = A.get(r);
int i = p - 1;
for (int j = p ; j < r; j++) {
if (A.get(j) <= x) {
i++;
Collections.swap(A, A.get(i), A.get(j));
}
}
Collections.swap(A, A.get(i + 1), A.get(r));
return (i + 1);
}
}
我正在使用书中的代码:“算法简介”
我正在尝试快速排序ArrayList
A.
public class TestDriver
{
public static void testQuick() {
//Laver et random array A
ArrayList<Integer> A = new ArrayList<>();
for (int i = 1; i <12; i++) {
A.add(i);
}
Collections.shuffle(A);
int n = A.size();
QuickSort qs = new QuickSort();
System.out.println("The Array");
System.out.println(A);
qs.quickSort(A, 0, (n - 1));
System.out.println("The Array after QuickSort");
System.out.println(A);
System.out.println("");
}
}
答案
问题是Collections.swap(A, A.get(i), A.get(j));
- 这将尝试使用A.get(i)
中的值作为列表中的索引,并且如果i
中的值大于A.size()
,则显然会抛出一个超出范围的异常。
所以用你想要交换的位置替换它们:
Collections.swap(A, i, j);
和
Collections.swap(A, (i + 1), r);
以上是关于QuickSort IndexOutOfBound异常arraylist的主要内容,如果未能解决你的问题,请参考以下文章
java Avoid_IndexOutOfBound_Ex.java