Java 冒泡排序算法实现详解编程语言

public class BubbleSort {  
   public static void sortiere(int[] x) { 
      boolean unsortiert=true; 
      int temp; 
        
      while (unsortiert){ 
         unsortiert = 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; 
               unsortiert = true; 
            }           
      }  
   } 
     
   public static void main(String[] args) { 
      int[] liste = {0,9,4,6,2,8,5,1,7,3}; 
      sortiere(liste); 
      for (int i=0; i<liste.length; i++)  
         System.out.print(liste[i]+" ");     
   }  
}

原创文章,作者:奋斗,如若转载,请注明出处:https://blog.ytso.com/10907.html

(0)
上一篇 2021年7月19日
下一篇 2021年7月19日

相关推荐

发表回复

登录后才能评论