欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

java冒泡排序Bubble Sort算法代码

程序员文章站 2022-07-14 08:46:57
...

java冒泡排序Bubble Sort算法代码

下载代码地址:http://www.zuidaima.com/share/1550463269096448.htm

 

package com.zuidaima.util;
/**
     *冒泡排序
     *@paramsrc待排序数组
     *@author www.zuidaima.com
     */
    void doBubbleSort(int[] src)
    {
       int len=src.length;
       for(int i=0;i<len;i++)
       {
           for(int j=i+1;j<len;j++)
           {
              int temp;
              if(src[i]>src[j])
              {
                  temp=src[j];
                  src[j]=src[i];
                  src[i]=temp;
              }            
           }
           printResult(i,src);
       }     
    }