冒泡算法
Posted Qunar_尤雪萍
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了冒泡算法相关的知识,希望对你有一定的参考价值。
冒泡排序
/**
* 冒泡算法
* Created by xueping.you on 15-8-5.
*/
public class BubbleSort
private final static Logger logger = LoggerFactory.getLogger(BubbleSort.class);
public static void bubbleSort(int [] unsortArray)
for(int i=0; i<unsortArray.length; i++)
for(int j=0; j<unsortArray.length-i-1; j++)
int temp = unsortArray[j];
if(unsortArray[j]>unsortArray[j+1])
unsortArray[j] = unsortArray[j+1];
unsortArray[j+1] = temp;
public static void main(String []args)
int [] array = new int[]12,10,2,45,31,56,1,9;
logger.info("before:" , array);
bubbleSort(array);
logger.info("after:", array);
result:
19:26:20.928 [main] INFO com.qyou.data.arithmetic.BubbleSort - before:[12, 10, 2, 45, 31, 56, 1, 9]
19:26:20.938 [main] INFO com.qyou.data.arithmetic.BubbleSort - after:[1, 2, 9, 10, 12, 31, 45, 56]
以上是关于冒泡算法的主要内容,如果未能解决你的问题,请参考以下文章