当前位置:   article > 正文

再论经典冒泡排序算法_冒泡排序中最小元素上浮是什么意思

冒泡排序中最小元素上浮是什么意思

冒泡排序基本原理:

从队列的底部开始,依次与前一个元素相比较,如果条件跟排序条件不符合,就交换。这样一轮比较下来,第一个元数就是最小的元素了。由于过程类似于夏天河底冒出汽泡,汽泡比水轻而上浮,所以叫冒泡排序。

有一种改进的形态,叫下沉法,类似于往河中扔东西,其过程是往下沉的。

以下用到的公用方法:

  1. /**
  2. * 是否升序排列,true:升序排列, false:降序排列
  3. */
  4. private static boolean isAscending = true;
  5. /**
  6. * 描述:判断前面元素跟后面元素的关系是否升序/降序。
  7. *
  8. * @param a 数组
  9. * @param prev 前面元素
  10. * @param next 后面元素
  11. * @param isAscending 是否升序排列,true:升序排列, false: 降序排列
  12. * @return
  13. */
  14. private static boolean judge(long prev, long next, boolean isAscending) {
  15. return isAscending ? prev < next : prev > next;
  16. }
  17. /**
  18. * 描述:交换元素。
  19. *
  20. * @param a 数组
  21. * @param i 元素1
  22. * @param j 元素2
  23. */
  24. private static void swap(int[] a, int i, int j) {
  25. int t = a[i];
  26. a[i] = a[j];
  27. a[j] = t;
  28. }
  29. /**
  30. * 描述:排序测试。
  31. *
  32. * @param args 命令行参数
  33. */
  34. public static void main(String[] args) {
  35. int[] a = { 1, 3, 7, 8, 5, 9, 6, 2, 4, 0 };
  36. System.out.println("数组长度:" + a.length);
  37. System.out.println("数组原有顺序:" + Arrays.toString(a));
  38. SortUtil.bubbleSort(a);
  39. System.out.println("数组排序后顺序:" + Arrays.toString(a));
  40. }

1.经典冒泡排序法(上浮法):
  1. /**
  2. * 描述:冒泡排序(交换排序)。上浮法。
  3. * <p>
  4. * 从未排序队列中,取出队尾元素,与前一元素比较并确定是否交换。重复前面的操作步骤。
  5. *
  6. * @param a 数组
  7. */
  8. public static void bubbleSort(int[] a) {
  9. int loopCount = 0;
  10. int swapCount = 0;
  11. for (int i = 0, n = a.length; i < n; i++) {
  12. // i之前的为已排序的有序队列(严格:已是最终结果的一部分)
  13. for (int j = n - 1; j > i; j--) {
  14. if (judge(a[j - 1], a[j], !isAscending)) {
  15. swap(a, j, j - 1);
  16. swapCount++;
  17. }
  18. loopCount++;
  19. }
  20. }
  21. System.out.println("loopCount=" + loopCount);
  22. System.out.println("swapCount=" + swapCount);
  23. }

2.形态改变冒泡排序法(下沉法):
  1. /**
  2. * 描述:冒泡排序(交换排序)。下沉法。
  3. * <p>
  4. * 从未排序队列中,取出队首元素,与后一元素比较并确定是否交换。重复前面的操作步骤。
  5. *
  6. * @param a 数组
  7. */
  8. public static void bubbleSort4(int[] a) {
  9. int loopCount = 0;
  10. int swapCount = 0;
  11. for (int i = 0, n = a.length; i < n; i++) {
  12. for (int j = 0, m = n - i - 1; j < m; j++) {
  13. if (judge(a[j], a[j + 1], !isAscending)) {
  14. swap(a, j, j + 1);
  15. swapCount++;
  16. }
  17. loopCount++;
  18. }
  19. }
  20. System.out.println("loopCount=" + loopCount);
  21. System.out.println("swapCount=" + swapCount);
  22. }

3.经典冒泡法改进(快速返回的):

场景:在基本有序的队列中,可能有很多环节只做了比较,没做交换,如果一整轮比较都未交换过,说明接下来不用再处理了,都是有序了。

  1. /**
  2. * 描述:冒泡排序(交换排序)。上浮法。改进型。
  3. * <p>
  4. * 从未排序队列中,取出队尾元素,与前一元素比较并确定是否交换。重复前面的操作步骤。
  5. *
  6. * @param a 数组
  7. */
  8. public static void bubbleSort2(int[] a) {
  9. int loopCount = 0;
  10. int swapCount = 0;
  11. // 判断处理过程中是否有交换
  12. boolean isExchanged = true;
  13. for (int i = 0, n = a.length; i < n && isExchanged; i++) {
  14. // i之前的为已排序的有序队列(严格:已是最终结果的一部分)
  15. isExchanged = false;
  16. for (int j = n - 1; j > i; j--) {
  17. if (judge(a[j - 1], a[j], !isAscending)) {
  18. swap(a, j, j - 1);
  19. swapCount++;
  20. isExchanged = true;
  21. }
  22. loopCount++;
  23. }
  24. }
  25. System.out.println("loopCount=" + loopCount);
  26. System.out.println("swapCount=" + swapCount);
  27. }

4.经典冒泡改进(快速返回的,利用上次排序结果):

场景:在基本有序的队列中,可能有很多环节只做了比较,没做交换,如果一整轮比较都未交换过,说明接下来不用再处理了,都是有序了。但如果只做了部分交换,则可以跳过那部分没交换的数据。

  1. /**
  2. * 描述:冒泡排序(交换排序)。上浮法。改进型。
  3. * <p>
  4. * 从未排序队列中,取出队尾元素,与前一元素比较并确定是否交换。重复前面的操作步骤。
  5. *
  6. * @param a 数组
  7. */
  8. public static void bubbleSort3(int[] a) {
  9. int loopCount = 0;
  10. int swapCount = 0;
  11. // 判断处理过程中是否有交换
  12. boolean isExchanged = true;
  13. // 上次交换时的索引
  14. int lastExchangeIndex = 0;
  15. for (int i = 0, n = a.length; i < n && isExchanged; i++) {
  16. // i之前的为已排序的有序队列(严格:已是最终结果的一部分)
  17. isExchanged = false;
  18. lastExchangeIndex = i;
  19. for (int j = n - 1; j > i; j--) {
  20. if (judge(a[j - 1], a[j], !isAscending)) {
  21. swap(a, j, j - 1);
  22. swapCount++;
  23. isExchanged = true;
  24. lastExchangeIndex = j -1;
  25. }
  26. loopCount++;
  27. }
  28. i = lastExchangeIndex;
  29. }
  30. System.out.println("loopCount=" + loopCount);
  31. System.out.println("swapCount=" + swapCount);
  32. }

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/小蓝xlanll/article/detail/163873?site
推荐阅读
相关标签
  

闽ICP备14008679号