From aff8da18269789d39d7c77f165d3d306e45d2d02 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=AD=94=E6=9C=AF=E6=A1=94=E5=AD=90?= <1197359867@qq.com> Date: Fri, 28 Jun 2024 09:19:39 +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/MaxLeton/17212370.java | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 codes/MaxLeton/17212370.java diff --git a/codes/MaxLeton/17212370.java b/codes/MaxLeton/17212370.java new file mode 100644 index 000000000..4fe168de3 --- /dev/null +++ b/codes/MaxLeton/17212370.java @@ -0,0 +1,17 @@ +/** + * 冒泡排序函数 + * aa bb cc + * @param a 待排序的数组 + * @param n 待排序的数组长度 + */ +public static void bubbleSort(int [] a, int n){ + for(int i = 0; i < n - 1; i++) { + for(int j = 0; j< n - i - 1; j++) { + if (a[j] > a[j + 1]) { + int temp = a[j]; + a[j] = a[j + 1]; + a[j + 1] = temp; + } + } + } +} //end -- Gitee