From 12388328b1ab3e9dc869bb60bfae619d17ae1e24 Mon Sep 17 00:00:00 2001 From: HelloWust <1469905252@qq.com> Date: Thu, 3 Nov 2022 04:45:34 +0000 Subject: [PATCH] add codes/hellowust. Signed-off-by: HelloWust <1469905252@qq.com> --- codes/hellowust | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 codes/hellowust diff --git a/codes/hellowust b/codes/hellowust new file mode 100644 index 00000000..2ac621aa --- /dev/null +++ b/codes/hellowust @@ -0,0 +1,18 @@ + +/** + * 冒泡排序函数 + * 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-1-i;j++){ + if(a[j] > a[j+1]){ + int temp = a[j]; + a[j] = a[j+1]; + a[j+1] = temp; + } + } + } +} \ No newline at end of file -- Gitee