0

尝试实现递归方法来对整数数组进行排序:

    public static void bubbleSort(int[] arr, int n){

      int index = n-1;

      System.out.println("Round number: " + n);
      System.out.println(Arrays.toString(arr));

      while(index>=1)
      {
          if(arr[index] <  arr[index-1])
              swap(arr, index, index-1);


          index--;
      }
      if(n>1)
          bubbleSort(arr, n-1);
  }

}

前几轮似乎工作正常,将集合中的最小整数移到前面,但它只是在中途停止工作。知道为什么吗?谢谢!

4

3 回答 3

3

您的算法每次都将最小值移动到数组的开头,然后在后续调用中忽略最后一个元素。不幸的是,最后一个元素不能保证是最大的。

修复它的一种方法可能是初始化indexarr.length - 1并继续循环 while index > arr.length - n

于 2013-08-06T01:10:22.383 回答
1

尝试这个:

import java.util.*;

public class Test{
    public static void main(String[] args){
        int[] ttt = {9,8,7,6,5,4,3,2,1};

        bubbleSort(ttt, ttt.length);
    }

    public static void bubbleSort(int[] arr, int n){
        int index = 0;

        System.out.println("Round number: " + n);
        System.out.println(Arrays.toString(arr));

        while(index < n - 1){
            if(arr[index] >  arr[index + 1]){
                swap(arr, index, index + 1);
            }
            index++;
        }

        if(n > 1){
            bubbleSort(arr, n-1);
        }
    }

    public static void swap(int[] arr, int i, int j){
        int tmp = arr[i];
        arr[i] = arr[j];
        arr[j] = tmp;
    }
}

在你的每一轮的情况下,你保证在每一轮结束时你都会将最小的数字推到它的位置,但随后会省略数组的最后一个元素,这不一定是最大的数字。您应该以相反的顺序进行操作,将最大的数字推到它的位置,然后在下一轮中将其排除在外。

http://en.wikipedia.org/wiki/File:Bubble-sort-example-300px.gif

仅供参考:冒泡排序的最坏情况性能是 O(n^2),也许您想实现更好的排序算法,如快速排序或归并排序?

于 2013-08-06T01:27:59.007 回答
1

将条件更改if为:

...
if(arr[index] <  arr[index-1]){
   swap(arr, index, index-1);
   index = n;
}
index--;
...

问题是,在您找到一个数组成员在整个数组中“委托”之后 - 您需要“重新启动”,因为可能还有其他成员需要“重新考虑”。如果我的描述不够清楚,请使用调试器运行,看看我的意思。

完整解决方案:

import java.util.Arrays;

/**
 * User: alfasin
 * Date: 8/5/13
 */
public class BubbleSort {

    public static void bubbleSort(int[] arr, int n){

        int index = n-1;

        System.out.println("Round number: " + n);
        System.out.println(Arrays.toString(arr));

        while(index>=1)
        {
            if(arr[index] <  arr[index-1]){
                swap(arr, index, index-1);
                index = n;
            }
            index--;
        }
        if(n>1)
            bubbleSort(arr, n-1);
    }

    private static void swap(int[] arr, int index, int i) {
        arr[i] = arr[i] ^ arr[index];
        arr[index] = arr[i] ^ arr[index];
        arr[i] = arr[i] ^ arr[index];
    }

    public static void main(String...args){
        int[] arr = {4,2,9,6,2,8,1};
        bubbleSort(arr, arr.length);
        for(int i=0; i<arr.length; i++){
            System.out.print(arr[i]+" ");
        }
    }

}

就像 sjee397 建议的那样——这更像是冒泡排序的“版本”......

更“保守”的冒泡排序版本:

public static void bubbleSort(int[] arr, int n){
        boolean swapped= true;
        while (swapped){
            swapped = false;
            for(int i=0; i<arr.length-1; i++){
                if(arr[i]>arr[i+1]){
                    swap(arr,i,i+1);
                    swapped = true;
                }
            }
        }
    }
于 2013-08-06T01:14:07.740 回答