diff --git a/codes/wxyaya/wxyaya.md b/codes/wxyaya/wxyaya.md new file mode 100644 index 0000000000000000000000000000000000000000..54c5f3869cd16ee9e7c2b77895a39fae63f05dbc --- /dev/null +++ b/codes/wxyaya/wxyaya.md @@ -0,0 +1,20 @@ +/** + * 冒泡排序函数 + * aa bb cc + * @param a 待排序的数组 + * @param n 待排序的数组长度 + */ +public static void bubbleSort(int [] a, int n){ + // 你的代码,使无序数组 a 变得有序 + for(int i = 0; i < n; i++) { + for(int liuy = 0; liuy < n - i - 1; liuy++) { + if(a[liuy] > a[liuy + 1]) { + int temp = a[liuy]; + a [liuy] = a[liuy + 1]; + a[liuy + 1] = temp; + } + } + } + + +} //end,liuy \ No newline at end of file