From d669385b4762e90088fb9a2702cf32ac44196e79 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E7=AB=A5=E5=98=89=E5=AE=87?= <505260111@qq.com> Date: Mon, 24 Oct 2022 08:46:08 +0000 Subject: [PATCH 1/2] =?UTF-8?q?=E6=96=B0=E5=BB=BA=20=20fubing3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- codes/ fubing3/.keep | 0 1 file changed, 0 insertions(+), 0 deletions(-) create mode 100644 codes/ fubing3/.keep diff --git a/codes/ fubing3/.keep b/codes/ fubing3/.keep new file mode 100644 index 00000000..e69de29b -- Gitee From c016c5fa3fa8315d1e06e6cd060d219e88b9fb81 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E7=AB=A5=E5=98=89=E5=AE=87?= <505260111@qq.com> Date: Mon, 24 Oct 2022 08:51:53 +0000 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 Signed-off-by: 童嘉宇 <505260111@qq.com> --- codes/ fubing3/9622480.java | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 codes/ fubing3/9622480.java diff --git a/codes/ fubing3/9622480.java b/codes/ fubing3/9622480.java new file mode 100644 index 00000000..408e7021 --- /dev/null +++ b/codes/ fubing3/9622480.java @@ -0,0 +1,19 @@ +/** + * 冒泡排序函数 + * 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 ; j < n - 1 - i ; j++){ + if(a[j] > a[j + 1]){ + int tmp = a[j]; + a[j] = a[j + 1]; + a[j + 1] = tmp; + } + } + } + +} //end -- Gitee