Fork me on GitHub
摘要: 1.编写一个方法,实现冒泡排序(由小到大),并调用该方法 public class h1{ public static void paixu(int[] b) { for (int i = 0; i < b.length - 1; i++) { for (int j = 0; j < b.lengt 阅读全文
posted @ 2021-05-12 13:43 Y6 阅读(87) 评论(0) 推荐(0)