From b069bc2636949eee614654ad2840e9dfa05f0d0b Mon Sep 17 00:00:00 2001 From: user_wan <2026804718@qq.com> Date: Tue, 3 Dec 2024 23:24:39 +0800 Subject: [PATCH 1/2] =?UTF-8?q?=E6=B7=BB=E5=8A=A0=E6=8E=92=E5=BA=8F?= =?UTF-8?q?=E4=BB=A3=E7=A0=81?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- 18889160.java | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 18889160.java diff --git a/18889160.java b/18889160.java new file mode 100644 index 00000000..eb0ffb31 --- /dev/null +++ b/18889160.java @@ -0,0 +1,18 @@ +/** + * 冒泡排序函数 + * aa bb cc + * @param a 待排序的数组 + * @param n 待排序的数组长度 + */ +public static void bubbleSort(int [] a, int n){ + // 你的代码,使无序数组 a 变得有序 + for (int i = 0; i < n-1; i++) { + for (int j = 0;ja[j+1]){ + int temp = a[j]; + a[j] = a[j+1]; + a[j+1] = temp; + } + } + } +} //end -- Gitee From 3e8ccde0bddd173813bb6fc4c742b522eddfc12d Mon Sep 17 00:00:00 2001 From: user_wan <2026804718@qq.com> Date: Tue, 3 Dec 2024 23:41:43 +0800 Subject: [PATCH 2/2] =?UTF-8?q?=E6=B7=BB=E5=8A=A0=E6=8E=92=E5=BA=8F?= =?UTF-8?q?=E4=BB=A3=E7=A0=81?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- codes/userwanyong/18889160.java | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 codes/userwanyong/18889160.java diff --git a/codes/userwanyong/18889160.java b/codes/userwanyong/18889160.java new file mode 100644 index 00000000..eb0ffb31 --- /dev/null +++ b/codes/userwanyong/18889160.java @@ -0,0 +1,18 @@ +/** + * 冒泡排序函数 + * aa bb cc + * @param a 待排序的数组 + * @param n 待排序的数组长度 + */ +public static void bubbleSort(int [] a, int n){ + // 你的代码,使无序数组 a 变得有序 + for (int i = 0; i < n-1; i++) { + for (int j = 0;ja[j+1]){ + int temp = a[j]; + a[j] = a[j+1]; + a[j+1] = temp; + } + } + } +} //end -- Gitee