tianwen_j 2016-09-09 01:40 采纳率: 0%
浏览 1296

我的java数组排序后为什么和排序前是一样的顺序呢?

/*
需求:给一个数组进行排序:{5,6,9,2,1,4,8,7,3}
*/
public class ArrayDemo1
{
public static void main(String[] args)
{
int[] arr ={5,6,9,2,1,4,8,7,3};
printArray(arr);
//selectSort(arr);
bubbleSort(arr);
printArray(arr);
}
public static void selectSort(int[] a)
{
for(int x = 0;x {
for(int y =x+1;y {
if(a[x]>a[y])
swap(a[x],a[y]);
}
}
}
private static void swap(int a,int b)
{
int temp = a;
a = b;
b = temp;

}

public static void bubbleSort(int[] a)
{
for(int x = 0;x<a.length-1;x++)
{
for(int y=0;y<a.length-x-1;y++)
{

        if(a[y]>a[y+1])
        swap(y,y+1);
        }
    }
}
public static void printArray(int[] a)
{
    System.out.print("[");
    for(int x=0;x<a.length;x++)
    {
        if(x!=a.length-1)
        {
            System.out.print(a[x]+",");
        }
        else
            System.out.println(a[x]+"]");
    }
}

}
——————————————————————
打印结果是:
[5,6,9,2,1,4,8,7,3]
[5,6,9,2,1,4,8,7,3]

  • 写回答

3条回答 默认 最新

  • Mr_小艾 2016-09-09 02:05
    关注
    public static void bubbleSort(int[] a){
    
        for(int x = 0;x<a.length-1;x++){
            for(int y=x+1;y<a.length;y++){
    
                if(a[y]<a[x]){//虽然只是把交换的代码放到这里,结果就出来了。
                    int temp;
                    temp = a[x] ;
                    a[x] = a[y] ;
                    a[y] = temp ;
                }
                    //swap(y,y+1);交换的时候,实质没有将数组传过去  你可以使用应该swap(int[]a,x,y) 把数组也传过去, x , y是需要交换位置的下标
            }
        }
    }
    
    评论

报告相同问题?

悬赏问题

  • ¥15 任意一个散点图自己下载其js脚本文件并做成独立的案例页面,不要作在线的,要离线状态。
  • ¥15 各位 帮我看看如何写代码,打出来的图形要和如下图呈现的一样,急
  • ¥30 c#打开word开启修订并实时显示批注
  • ¥15 如何解决ldsc的这条报错/index error
  • ¥15 VS2022+WDK驱动开发环境
  • ¥30 关于#java#的问题,请各位专家解答!
  • ¥30 vue+element根据数据循环生成多个table,如何实现最后一列 平均分合并
  • ¥20 pcf8563时钟芯片不启振
  • ¥20 pip2.40更新pip2.43时报错
  • ¥15 换yum源但仍然用不了httpd