From 41f0d9275694ccf20403eb19d82b4dc351f478fd Mon Sep 17 00:00:00 2001 From: kongjin <11910406+kongjin@user.noreply.gitee.com> Date: Fri, 4 Nov 2022 07:58:05 +0000 Subject: [PATCH 1/2] =?UTF-8?q?=E6=96=B0=E5=BB=BA=20kongjin?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- codes/kongjin/.keep | 0 1 file changed, 0 insertions(+), 0 deletions(-) create mode 100644 codes/kongjin/.keep diff --git a/codes/kongjin/.keep b/codes/kongjin/.keep new file mode 100644 index 00000000..e69de29b -- Gitee From d8d041b43fb4b745c92c20871061543895d491ef Mon Sep 17 00:00:00 2001 From: kongjin <11910406+kongjin@user.noreply.gitee.com> Date: Fri, 4 Nov 2022 07:58:47 +0000 Subject: [PATCH 2/2] add codes/kongjin/xiaotiancai. Signed-off-by: kongjin <11910406+kongjin@user.noreply.gitee.com> --- codes/kongjin/xiaotiancai | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 codes/kongjin/xiaotiancai diff --git a/codes/kongjin/xiaotiancai b/codes/kongjin/xiaotiancai new file mode 100644 index 00000000..396eee26 --- /dev/null +++ b/codes/kongjin/xiaotiancai @@ -0,0 +1,12 @@ +/** + * 冒泡排序函数 + * aa bb cc + * @param a 待排序的数组 + * @param n 待排序的数组长度 + */ +public static void bubbleSort(int [] a, int n){ + // 你的代码,使无序数组 a 变得有序 + ... + ... + +} //end \ No newline at end of file -- Gitee