搜索你感兴趣的问题
java编程:用冒泡排序实现升序排列和降序排列
难得糊涂 2024-06-01 10:55:04
推荐回答
难得糊涂 2024-06-07 10:14:17

12,45,9,67,455,用冒泡排序实现升序排列

操作方法

package com.liushuo;public class Test05 {public static void main(String[] args) ;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] &gt; arr[j + 1]中的&quot;&gt;&quot; 改为&quot;

大家都关注
有问题 @爱问
Powered by iask.com