From bf159a579fb1087a6e32135ee170c0cedd0f1cda Mon Sep 17 00:00:00 2001 From: chenKa <1271267578@qq.com> Date: Mon, 24 Oct 2022 18:18:44 +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/chenKa/9957644.java | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 codes/chenKa/9957644.java diff --git a/codes/chenKa/9957644.java b/codes/chenKa/9957644.java new file mode 100644 index 000000000..948001074 --- /dev/null +++ b/codes/chenKa/9957644.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; i++) { + for (int j = (i + 1); j < n; j++) { + if (arr[i] > arr[j]) { + int temp = arr[i]; + arr[i] = arr[j]; + arr[j] = temp; + } + } + } +} //end -- Gitee