本文主要是介绍冒泡排序的另一种写法(用Java实现),对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
package kz;
class MoPai {
private int[] a;
private int n;
public MoPai(int[] a) {
this.a = a;
this.n = a.length;
}
public void display() {
for (int x : a) {
System.out.println(x + " ");
}
System.out.println();
}
public void Sz() {
int j, i, temp;
for (i = 0; i < n - 1; i++) {
for (j = 0; j < n - 1 - i; j++) {
if (a[j] > a[j + 1]) {
temp = a[j];
a[j] = a[j + 1];
a[j + 1] = temp;
}
}
}
}
}
public class sx{
public static void main(String[] args) {
int []c={121,2,43,5,35,43,234,52,245,63,35,72};
MoPai s=new MoPai(c);
System.out.println("排序前:");
s.display();
System.out.println();
System.out.println("排序后:");
s.Sz();
s.display();
}
}
这篇关于冒泡排序的另一种写法(用Java实现)的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!