java编程:用冒泡排序实现升序排列和降序排列

作者:国际小甜 | 创建时间: 2023-05-01
12,45,9,67,455,用冒泡排序实现升序排列...
java编程:用冒泡排序实现升序排列和降序排列

操作方法

package com.liushuo; public class Test05 { public static void main(String[] args) { // 12,45,9,67,455,用冒泡排序实现升序排列。 int[] arr = { 12, 45, 9, 67, 455 }; for (int i = 0; i < arr.length - 1; i++) { for (int j = 0; j < arr.length - 1 - i; j++) { if (arr[j] > arr[j + 1]) { int temp; temp = arr[j]; arr[j] = arr[j + 1]; arr[j + 1] = temp; } } } System.out.println("排序后:"); for (int i = 0; i < arr.length; i++) System.out.print(arr[i] + "\t"); } }

温馨提示

若要实现降序排列,只需将arr[j] > arr[j + 1]中的">" 改为"
点击展开全文

更多推荐