From a20d34a3c3ba61e64263eb0a3e10d36da6b95d79 Mon Sep 17 00:00:00 2001 From: w2516275594 <2516275594@qq.com> Date: Thu, 22 May 2025 09:14:01 +0800 Subject: [PATCH] =?UTF-8?q?=E6=B7=BB=E5=8A=A0=E6=8E=92=E5=BA=8F=E4=BB=A3?= =?UTF-8?q?=E7=A0=81?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- codes/w2516275594/20600643.java | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 codes/w2516275594/20600643.java diff --git a/codes/w2516275594/20600643.java b/codes/w2516275594/20600643.java new file mode 100644 index 000000000..1d1eba8a2 --- /dev/null +++ b/codes/w2516275594/20600643.java @@ -0,0 +1,17 @@ +/** + * 冒泡排序函数 + * 对数组进行冒泡排序,从小到大排序 + * @param a 待排序的数组 + * @param n 待排序的数组长度 + */ +public static void bubbleSort(int [] a, int n){ + for (int i = 0; i < n - 1; i++) { + for (int j = 0; j < n - 1 - i; j++) { + if (a[j] > a[j + 1]) { + int temp = a[j]; + a[j] = a[j + 1]; + a[j + 1] = temp; + } + } + } +} //end -- Gitee