常见排序算法之冒泡排序
Posted java-spring
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了常见排序算法之冒泡排序相关的知识,希望对你有一定的参考价值。
/** * 冒泡排序的核心就是,按顺序进行两两比较,如果第一个比第二个大则交换位置 */ public class MaoPaoPaiXu { private static int[] bubbleSort(int[] a) { // 至少进行n-1轮比较 for (int i = 0; i < a.length - 1; i++) { // 第一轮比较完毕后,最大的已经排到最后面,所以下次比较就不用比较最后一个了,这样更快 for (int j = 0; j < a.length - i - 1; j++) { if (a[j] > a[j + 1]) { // 交换位置 swap(a, j, j + 1); } } } return a; } private static void swap(int[] a, int j, int i) { int temp = a[i]; a[i] = a[j]; a[j] = temp; } /** * 冒泡排序的时间复杂度是O(n^2),空间复杂度是O(1) */ public static void main(String[] args) { int[] a = { 2, 7, 4, 66, 43, 8, 5, 45, 22, 1, 9, 20 }; int[] bubbleSort = bubbleSort(a); for (int i = 0; i < bubbleSort.length; i++) { System.out.println(bubbleSort[i]); } } }
以上是关于常见排序算法之冒泡排序的主要内容,如果未能解决你的问题,请参考以下文章