From c501c6506193a66d8d5af0799f1d42006143deaf Mon Sep 17 00:00:00 2001 From: 123 <3382521750@qq.com> Date: Fri, 4 Nov 2022 10:53:22 +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/a15178151351/9622480.java | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 codes/a15178151351/9622480.java diff --git a/codes/a15178151351/9622480.java b/codes/a15178151351/9622480.java new file mode 100644 index 000000000..f12f3607f --- /dev/null +++ b/codes/a15178151351/9622480.java @@ -0,0 +1,13 @@ +/** + * 冒泡排序函数 + * aa bb cc + * @param a 待排序的数组 + * @param n 待排序的数组长度 + */ +public static void bubbleSort(int [] a, int n){ + // 你的代码,使无序数组 a 变得有序 + ... + ... + +} //end + -- Gitee