From 30295adc1bec8a23d4d7e1ca51c63abfe5b8245b Mon Sep 17 00:00:00 2001 From: shelly <748706450@qq.com> Date: Fri, 16 Sep 2022 14:10:42 +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/shelly/9674981.java | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 codes/shelly/9674981.java diff --git a/codes/shelly/9674981.java b/codes/shelly/9674981.java new file mode 100644 index 00000000..7aa905f3 --- /dev/null +++ b/codes/shelly/9674981.java @@ -0,0 +1,24 @@ +/** + * 冒泡排序函数 + * aa bb cc + * @param a 待排序的数组 + * @param n 待排序的数组长度 + */ +public static void bubbleSort(int [] a, int n){ + // 你的代码,使无序数组 a 变得有序 + for(int j=0;ja[i+1]) + { + temp=a[i]; + a[i]=a[i+1]; + a[i+1]=temp; + } + } + } + //System.out.println(a); + +} //end -- Gitee