摘要: 冒泡排序(核心思想:通过两两比较将最小/大值移至数组末位) public static void main(String[] args) { int array[]= new int[9]; //定义数组 int temp;//定义临时变量 int isChange ;//定义变量用来标识是否改变 阅读全文
posted @ 2020-05-22 15:29 王嘉豪 阅读(166) 评论(0) 推荐(0)