From 6b17725fd8d96182b73292b6f7d07c3853922f20 Mon Sep 17 00:00:00 2001 From: yuxiaopang0301 <11901934+yuxiaopang0301@user.noreply.gitee.com> Date: Thu, 3 Nov 2022 03:37:24 +0000 Subject: [PATCH] add yuxiaopang0301.java. Signed-off-by: yuxiaopang0301 <11901934+yuxiaopang0301@user.noreply.gitee.com> --- yuxiaopang0301.java | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 yuxiaopang0301.java diff --git a/yuxiaopang0301.java b/yuxiaopang0301.java new file mode 100644 index 000000000..1d16395aa --- /dev/null +++ b/yuxiaopang0301.java @@ -0,0 +1,23 @@ +/** + * 冒泡排序函数 + * 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 temp = a[j]; + a[j] = a[j+1]; + a[j+1] = temp; + } + } + } + + System.out.print("冒泡排序的结果是: "); + for (int i : a) { + System.out.print(i + " "); + } +} //end -- Gitee