From d883a5eec4a35e8268c7da03a231e075fb455251 Mon Sep 17 00:00:00 2001 From: sun_gh_pku Date: Wed, 25 Sep 2024 11:08:47 +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/Sun_gh_pku/18171390.java | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 codes/Sun_gh_pku/18171390.java diff --git a/codes/Sun_gh_pku/18171390.java b/codes/Sun_gh_pku/18171390.java new file mode 100644 index 000000000..ada2ebd9e --- /dev/null +++ b/codes/Sun_gh_pku/18171390.java @@ -0,0 +1,23 @@ +/** + * 冒泡排序函数 + * aa bb cc + * @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 - i - 1; j++) { + if (a[j] > a[j + 1]) { + // 交换 a[j] 和 a[j + 1] + int temp = a[j]; + a[j] = a[j + 1]; + a[j + 1] = temp; + } + } + } + //你的代码,使无序数组 a 变得有序 + //. + ... + +} //end -- Gitee