Bubble Sort

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Bubble Sort相关的知识,希望对你有一定的参考价值。

/**

*

*

@author a496006

*

*/

public

class BubbleSort {

 

// Bubble order

public static void main(String[] args) {

 

int k;

Integer[] a = { 2, 1, 6, 5, 4, 3 };

 

for (int i = 0; i < a.length-1; i++) {

 

for (int j = 0; j < a.length-i-1; j++) {

 

if (a[j] < a[j+1]) {

 

k = a[j];

a[j] = a[j+1];

a[j+1] = k;

 

}

 

}

 

}

 

// The below 2 "for cycles" have same functionality

for (Object obj : a) {

System.out.println(obj);

 

}

 

// for (int i = 0; i < a.length; i++) {

//

// System.out.println(a[i]);

//

// }

 

}

}

以上是关于Bubble Sort的主要内容,如果未能解决你的问题,请参考以下文章

冒泡算法-bubble

Bubble Sort

Bubble更新

Slack 聊天机器人连接到 Bubble 数据库

HDU 5775 Bubble Sort(冒泡排序)

text Bubble_sort