提问者:小点点

将双数组排序为升序


我目前正在尝试手动将双数组按升序排序。我遇到的问题是,输出只在顶部列出了第一个最小值(这是正确的),但列出了其余的0.0值。(值的范围为-5到20)。下面是我对排序的编码尝试。任何帮助都将不胜感激。非常感谢。

             int index; 
             double temp;

             for(index = 0; index < x.length; index++)
               { 
                 for(int j = 0; j < x.length - 1; j++)
                    {
                       if(x[j + 1] < x[j])
                          {
                             temp = x[j + 1];
                             x[j + 1] = x[j];
                             x[j] = temp;  
                           }
                      }
                }

共3个答案

匿名用户

这几乎是你得到的泡泡。试试这个:

 public static void sort(int[] x) {
  boolean sorted=true;
  int temp;

  while (sorted){
     sorted = false;
     for (int i=0; i < x.length-1; i++) 
        if (x[i] > x[i+1]) {                      
           temp       = x[i];
           x[i]       = x[i+1];
           x[i+1]     = temp;
           sorted = true;
        }          
  } 

}

但是科林是对的。你最好和rrays.sort.

匿名用户

您可以使用数组。从java中排序(x)。utilpackage对数组进行排序。

匿名用户

很接近,但需要将x[index]与x[j]进行比较:

for (int index = 0; index < x.length - 1; index++) {
  for (int j = index + 1; j < x.length; j++) {
    if (x[j] < x[index]) {
      temp = x[j];
      x[j] = x[index];
      x[index] = temp;
    }
  }
}