冒泡算法
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了冒泡算法相关的知识,希望对你有一定的参考价值。
java冒泡排序算法,可实现最基本的java冒泡排序功能,源代码如下:
public class MaoPao {
public static void main(String[] args) {
int a[] = { 12, 23, 435, 6, 2, 4, 543, 226, 595 };
int i, j, n, temp;
// 数组的长度
n = a.length;
for (j = 0; j < n; j++) {
for (i = 0; i < n - j; i++) {
try {
// 把最大的交换到最后面去
if (a[i] > a[i + 1]) {
temp = a[i];
a[i] = a[i + 1];
a[i + 1] = temp;
}
} catch (Exception e) {
// TODO: handle exception
}
}
}
for (i = 0; i < n; i++) {
System.out.print(a[i] + " ");
}
}
}
以上是关于冒泡算法的主要内容,如果未能解决你的问题,请参考以下文章