你如何冒泡最大到最小

时间:2014-04-04 04:45:17

标签: java sorting

对不起,我有点蹩脚。我在这里寻找一种冒泡排序的方法,这样我就可以得到一个从最大数到最小数的数组。我在当前的排序中发现了一些错误,一旦将较小的数字与较大的数字进行比较,我似乎无法对数组进行排序。这就是我到目前为止所使用的。

//bubble sort
    for(int i=0;i<size;i++)
    {
        for(int v=1;i<(size-i);i++)
        {
            if(arrInt[v-1]<arrInt[v])
            {
                temp = arrInt[v-1];
                arrInt[v-1]=arrInt[v];
                arrInt[v]=temp;
            }
        }
    }

6 个答案:

答案 0 :(得分:1)

int n = arrInt.length;
int temp = 0;    
for (int i = 0; i < n; i++) {
   for (int v = 1; v < (n - i); v++) {
       if (arrInt[v - 1] < arrInt[v]) {
          temp = arrInt[v - 1];
          arrInt[v - 1] = arrInt[v];
          arrInt[v] = temp;
       }

   }
}  

试试这个。 更新 - 用v

替换j

答案 1 :(得分:0)

问题是内环应该从1到n。相反,你的内循环会提早停止。

此外,您正在内循环条件下测试i,但您应该测试v。

试试这个:

//bubble sort
for(int i=0;i<size;i++)
{
    for(int v=1;v<size;v++)
    {
        if(arrInt[v-1]<arrInt[v])
        {
            temp = arrInt[v-1];
            arrInt[v-1]=arrInt[v];
            arrInt[v]=temp;
        }
    }
}

答案 2 :(得分:0)

Bubble Sort Method for Descending Order

public static void BubbleSort( int[ ] arr){
    int records=arr.length-1;
    boolean notSorted= true;   // first pass
    while (notSorted) {
        notSorted= false;    //set flag to false awaiting a possible swap
        for( int count=0;  count < records;  count++ ) {
            if ( arr[count] < arr[count+1] ) {  // change to > for ascending sort
                arr[count]=arr[count]+arr[count+1];
                arr[count+1]=arr[count]-arr[count+1];
                arr[count]=arr[count]-arr[count+1];
                notSorted= true;     //Need to further check        
            }
        }
    }
} 

在此方法中,当数组被排序时,它不会进一步检查。

答案 3 :(得分:0)

通常我会像这样实现冒泡排序,

for(int i=0;i<size-1;i++) {
    for(int v=0;v<(size-1-i);v++){
        if(arrInt[v]<arrInt[v+1])
        {
            temp = arrInt[v];
            arrInt[v]=arrInt[v+1];
            arrInt[v+1]=temp;
        }
    }
}

你知道问题是什么,在你的代码中?查看内部循环,您正在初始化v,但检查并更改i。必须是复制粘贴错误..:P

希望它有所帮助...

答案 4 :(得分:0)

你走了:

int x = 0;

for(int i = 0; i < array.length; i++)
    for(int j = 0; j < array.length; j++)
        if(array[i] > array[j + 1])
            x = array[j + 1];
            array[j + 1]= array[i];
            array[i] = x;

x这是您只需要执行此操作的临时变量。

答案 5 :(得分:0)

这是一个完整的运行程序。希望让你保持积极性

package test;

public class BubbleSort {

private static int[] arr = new int[] { 1, 45, 65, 89, -98, 2, 75 };

public static void sortBubbleWay() {
    int size = arr.length-1;
    int temp = 0; // helps while swapping
    for (int i = 0; i < size - 1; i++) {
        for (int j = 0; j < size - i; j++) {
            if (arr[j] < arr[j+1]) { /* For decreasing order use < */
                temp = arr[j];
                arr[j] = arr[j + 1];
                arr[j + 1] = temp;
            }
        }
    }
}

private static void showShortedArray() {
    for (int elt : arr) {
        System.out.println(elt);
    }
}

public static void main(String args[]) {
    sortBubbleWay();
    showShortedArray();
}
}//end of class