首页
学习
活动
专区
圈层
工具
发布
社区首页 >问答首页 >QuickSort OutOfBounds错误

QuickSort OutOfBounds错误
EN

Stack Overflow用户
提问于 2016-05-03 11:02:19
回答 1查看 63关注 0票数 0

我试图构建一个使用三个值的中值作为轴心的quickSort函数,但我遇到了问题。我在56行、66行、35行、34行和84行遇到了越界错误,我正在尝试更改它,但没有效果。有什么想法吗?

代码语言:javascript
复制
public class MyQuickSort {

    private int array[];
    private int length;

    public void sort(int[] inputArr) {

        if (inputArr.length == 0) {
            return;
        }
        this.array = inputArr;
        length = inputArr.length;
        quickSort(0, length - 1);
    }

    private void quickSort(int lowerIndex, int higherIndex) {

        int i = lowerIndex;
        int j = higherIndex;
        // calculate pivot number, I am taking pivot as middle index number
        int mid = array[(higherIndex-1)/2];
        // Divide into two arrays

        int pivot = findMedian(array, i, mid, j);
        swap(pivot, 0);

        while (i <= j) {
            /**
             * In each iteration, we will identify a number from left side which
             * is greater then the pivot value, and also we will identify a number
             * from right side which is less then the pivot value. Once the search
             * is done, then we exchange both numbers.
             */
            while (array[i] < mid) {
                i++;
            }
            while (array[j] > mid) {
                j--;
            }
            if (i <= j) {
                swap(i, j);
                //move index to next position on both sides
                i++;
                j--;
            }
        }
        // call quickSort() method recursively
        if (lowerIndex < j)
            quickSort(lowerIndex, j);
        if (i < higherIndex)
            quickSort(i, higherIndex);
    }

    public static int findMedian (int[] array, int a, int b, int c) {
        if ((array[a] > array[b] && array[a] < array[c]) || (array[a] > array[c] && array[a] < array[b])) {
            return a; 
        } else if ((array[b] > array[a] && array[b] < array[c]) || (array[b] > array[c] && array[b] < array[a])) {
            return b; 
        }
        return c; 
    }


    private void swap(int i, int j) {
        int temp = array[i];
        array[i] = array[j];
        array[j] = temp;
    }

    public static void main(String a[]){

        MyQuickSort sorter = new MyQuickSort();
        int[] input = {24,2,45,20,56,75,2,56,99,53,12};
        sorter.sort(input);
        for(int i:input){
            System.out.print(i);
            System.out.print(" ");
        }
    }
}
EN

回答 1

Stack Overflow用户

发布于 2016-05-03 11:39:01

问题是变量"mid“既被用作索引,也被用作值。函数findMedian()只需要索引,而不需要数组中的值。

如果我将快速排序()改为(请注意,这还包括对midIndex的索引边界检查):

代码语言:javascript
复制
    private void quickSort(int lowerIndex, int higherIndex) {

        int i = lowerIndex;
        int j = higherIndex;
        // calculate pivot number, I am taking pivot as middle index number
        int midIndex = (higherIndex-1)/2;
        if (midIndex < lowerIndex) {
          midIndex = lowerIndex;
        }
        int mid = array[midIndex];
        // Divide into two arrays

        int pivot = findMedian(array, i, midIndex, j);
        swap(pivot, i);

        while (i <= j) {
            /**
             * In each iteration, we will identify a number from left side which
             * is greater then the pivot value, and also we will identify a number
             * from right side which is less then the pivot value. Once the search
             * is done, then we exchange both numbers.
             */
            while (array[i] < mid) {
                i++;
            }
            while (array[j] > mid) {
                j--;
            }
            if (i <= j) {
                swap(i, j);
                //move index to next position on both sides
                i++;
                j--;
            }
        }
        // call quickSort() method recursively
        if (lowerIndex < j)
            quickSort(lowerIndex, j);
        if (i < higherIndex)
            quickSort(i, higherIndex);
    }

我得到了:

代码语言:javascript
复制
java MyQuickSort
2 2 12 20 24 45 53 56 56 75 99
票数 1
EN
页面原文内容由Stack Overflow提供。腾讯云小微IT领域专用引擎提供翻译支持
原文链接:

https://stackoverflow.com/questions/36994900

复制
相关文章

相似问题

领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档