2

抱歉,如果这是一个基本问题...

我只是想了解更多关于算法的知识......

我编写了一个简单的代码来按升序执行插入排序,但由于某种原因,我无法使其按降序执行排序。

我尝试将比较键 (while (i > 0 && a[i] > key) 更改为 (i > 0 && a[i] < key)).. 它似乎部分工作,但第一个元素没有得到排序,我得到以下结果..有人可以让我知道我错在哪里吗?

1 11 10 9 5 4 3 2

public class InsertionSort {
    public static void main(String args[]) {
        int[] a = { 1,10,11,5, 9, 3, 2, 4 };
        // Loop through the entire array length. Consider you already have one
        // element in array, start comparing with
        // first element
        for (int j = 1; j < a.length; j++) {
            // Get the key (The value that needs to be compared with existing
            // values.
            int key = a[j];
            // Get the array index for comparison, we need to compare with all
            // other elements in the array with
            // key
            int i = j - 1;
            // While i > 0 and when key is less than the value in the array
            // shift the value and insert
            // the value appropriately.
            //System.out.println(j);
            while (i > 0 && a[i] < key) {
                a[i + 1] = a[i];
                i = i - 1;
                a[i + 1] = key;
            }
        }
        for (int k = 0; k < a.length; k++) {
            System.out.println(a[k]);
        }
    }
}
4

4 回答 4

9

你从不a[0]接触

while (i > 0 && a[i] < key) {

所以它没有被分类到应有的位置。使用>=代替>

while (i >= 0 && a[i] < key) {

升序排序时也会出现同样的问题。

于 2013-03-08T15:56:52.913 回答
2

数组中的第一个元素是a[0]。你没有在任何地方比较它。

于 2013-03-08T15:56:58.630 回答
1

从 0 开始,使用数组 a[] 到达第一个元素 a[0]。所以 a[j] 中的第一个元素将是 a[0] 而不是 a[1];

于 2013-03-08T15:59:24.923 回答
1
public static void insertionSort(int[] arr)
    {
        for (int i = 1; i < arr.length; i++)
        {
            int curNumber = arr[i];
            int curIndex = i-1;
            while ( curIndex >= 0 && arr[curIndex] < curNumber)
            {
                arr[curIndex+1] = arr[curIndex];
                curIndex--;
            }
            arr[curIndex+1] = curNumber;
        }
    }
于 2020-04-01T03:22:06.210 回答