摘要: 准备 public interface Sort { void sort(int[] nums); } 定义所有排序方式通用接口 冒泡排序 两两比较,将最大(最小值)移动到最右边。 第一版 public class BubbleSort implements Sort { @Override pub 阅读全文
posted @ 2021-01-21 19:21 strongmore 阅读(196) 评论(0) 推荐(0) 编辑