• 八大排序java


    冒泡排序
    1. /**
    2. * 冒泡排序:* 比较相邻的元素。如果第一个比第二个大,就交换他们两个。* 对每一对相邻元素作同样的工作,从开始第一对到结尾的最后一对。这步做完后,最后的元素会是最大的数。* 针对所有的元素重复以上的步骤,除了最后一个。* 持续每次对越来越少的元素重复上面的步骤,直到没有任何一对数字需要比较。*/
    3. public class BubbleSort {
    4. public static void main(String[] args) {
    5. int[] arr = new int[]{3, 4, 5, 7, 1, 2, 0, 3, 6, 8};
    6. System.out.printf("排序前:" + Arrays.toString(arr) + "\n");
    7. bubbleSort(arr);
    8. System.out.printf("排序后:" + Arrays.toString(arr));
    9. }
    10. public static void bubbleSort(int[] arr) {
    11. for (int i = 0; i < arr.length - 1; i++) {
    12. for (int j = 0; j < arr.length - 1 - i; j++) {
    13. if (arr[j] > arr[j + 1]) {
    14. int temp = arr[j];
    15. arr[j] = arr[j + 1];
    16. arr[j + 1] = temp;
    17. }
    18. }
    19. }
    20. }
    21. }
    快速排序
    1. /**
    2. * 快速排序:* 快速排序的核心思想也是分治法,分而治之。* 选取第一个数为基准,将比基准小的数交换到前面,比基准大的数交换到后面,对左右区间重复第二步,直到各区间只有一个数
    3. */
    4. public class QuickSort {
    5. public static void main(String[] args) {
    6. int[] arr = new int[]{3, 4, 5, 7, 1, 2, 0, 3, 6, 8};
    7. System.out.printf("排序前:" + Arrays.toString(arr) + "\n");
    8. quickSort(arr, 0, arr.length - 1);
    9. System.out.printf("排序后:" + Arrays.toString(arr));
    10. }
    11. public static void quickSort(int[] arr, int low, int high) {
    12. int i, j, temp, t;
    13. if (low > high) {
    14. return;
    15. }
    16. i = low;
    17. j = high;
    18. //temp就是基准位
    19. temp = arr[low];
    20. while (i < j) {
    21. //从右往左扫描,找到第一个比基准值小的元素
    22. while (temp <= arr[j] && i < j) {
    23. j--;
    24. }
    25. //从左往右扫描,找到第一个比基准值大的元素
    26. while (temp >= arr[i] && i < j) {
    27. i++;
    28. }
    29. //如果满足条件则交换
    30. if (i < j) {
    31. t = arr[j];
    32. arr[j] = arr[i];
    33. arr[i] = t;
    34. }
    35. }
    36. //最后将基准为与i和j相等位置的数字交换
    37. arr[low] = arr[i];
    38. arr[i] = temp;
    39. //递归调用左半数组
    40. quickSort(arr, low, j - 1);
    41. //递归调用右半数组
    42. quickSort(arr, j + 1, high);
    43. }
    44. }
     插入排序
    1. /**
    2. * 插入排序:* 从第一个元素开始,该元素可以认为已经被排序
    3. * 取出下一个元素,在已经排序的元素序列中从后向前扫描
    4. * 如果该元素(已排序)大于新元素,将该元素移到下一位置
    5. * 重复步骤3,直到找到已排序的元素小于或者等于新元素的位置
    6. * 将新元素插入到该位置后
    7. * 重复步骤2~5
    8. * 插入排序的思想和我们打扑克摸牌的时候一样,从牌堆里一张一张摸起来的牌都是乱序的,我们会把摸起来的牌插入到左手中合适的位置,让左手中的牌时刻保持一个有序的状态。*/
    9. public class InsertSort {
    10. public static void main(String[] args) {
    11. int[] arr = new int[]{3, 4, 5, 7, 1, 2, 0, 3, 6, 8};
    12. System.out.printf("排序前:" + Arrays.toString(arr) + "\n");
    13. insertSort(arr);
    14. System.out.printf("排序后:" + Arrays.toString(arr));
    15. }
    16. public static void insertSort(int[] arr) {
    17. for (int i = 1; i < arr.length; i++) {
    18. if (arr[i] < arr[i - 1]) {
    19. int temp = arr[i];
    20. int j; //插入的位置
    21. for (j = i - 1; j >= 0 && temp < arr[j]; j--) {
    22. arr[j + 1] = arr[j]; //移动数据
    23. }
    24. arr[j + 1] = temp; //插入数据
    25. }
    26. }
    27. }
    28. }
    选择排序
    1. /**
    2. * 选择排序:* 在未排序序列中找到最小(大)元素,存放到排序序列的起始位置
    3. * 从剩余未排序元素中继续寻找最小(大)元素,然后放到已排序序列的末尾
    4. * 以此类推,直到所有元素均排序完毕
    5. */
    6. public class SelectSort {
    7. public static void main(String[] args) {
    8. int[] arr = new int[]{3, 4, 5, 7, 1, 2, 0, 3, 6, 8};
    9. System.out.printf("排序前:" + Arrays.toString(arr) + "\n");
    10. selectsort(arr);
    11. System.out.printf("排序后:" + Arrays.toString(arr));
    12. }
    13. public static void selectsort(int[] arr) {
    14. for (int i = 0; i < arr.length; i++) {
    15. int min = i; //最小元素的下标
    16. for (int j = i + 1; j < arr.length; j++) {
    17. if (arr[min] > arr[j]) {
    18. min = j; //找最小值
    19. }
    20. }
    21. //交换位置
    22. if (i != min) {
    23. int temp = arr[i];
    24. arr[i] = arr[min];
    25. arr[min] = temp;
    26. }
    27. }
    28. }
    29. }
    堆排序
    1. /**
    2. * 堆排序:* 1、根据初始数组构造堆
    3. * 2、每次交换第一个和最后一个元素,然后将除最后一个元素以外的其他元素重新调整为大顶堆
    4. * 重复以上两个步骤,直到没有元素可操作,就完成排序了。*/
    5. public class HeapSort {
    6. public static void main(String[] args) {
    7. int[] arr = new int[]{3, 4, 5, 7, 1, 2, 0, 3, 6, 8};
    8. System.out.printf("排序前:" + Arrays.toString(arr) + "\n");
    9. heapSort(arr);
    10. System.out.printf("排序后:" + Arrays.toString(arr));
    11. }
    12. /**
    13. * 转化为大顶堆
    14. * @param arr 待转化的数组
    15. * @param size 待调整的区间长度
    16. * @param index 结点下标
    17. */
    18. public static void maxHeap(int[] arr, int size, int index) {
    19. //左子结点
    20. int leftNode = 2 * index + 1;
    21. //右子结点
    22. int rightNode = 2 * index + 2;
    23. int max = index;
    24. //和两个子结点分别对比,找出最大的结点
    25. if (leftNode < size && arr[leftNode] > arr[max]) {
    26. max = leftNode;
    27. }
    28. if (rightNode < size && arr[rightNode] > arr[max]) {
    29. max = rightNode;
    30. }
    31. //交换位置
    32. if (max != index) {
    33. int temp = arr[index];
    34. arr[index] = arr[max];
    35. arr[max] = temp;
    36. //因为交换位置后有可能使子树不满足大顶堆条件,所以要对子树进行调整
    37. maxHeap(arr, size, max);
    38. }
    39. }
    40. public static void heapSort(int[] arr) {
    41. //开始位置是最后一个非叶子结点,即最后一个结点的父结点
    42. int start = (arr.length - 1) / 2;
    43. //调整为大顶堆
    44. for (int i = start; i >= 0; i--) {
    45. HeapSort.maxHeap(arr, arr.length, i);
    46. }
    47. //先把数组中第 0 个位置的数和堆中最后一个数交换位置,再把前面的处理为大顶堆
    48. for (int i = arr.length - 1; i > 0; i--) {
    49. int temp = arr[0];
    50. arr[0] = arr[i];
    51. arr[i] = temp;
    52. maxHeap(arr, i, 0);
    53. }
    54. }
    55. }

    归并排序

    1. /**
    2. * 归并排序:* 将 n 个元素分成两个各含 n/2 个元素的子序列
    3. * 借助递归,两个子序列分别继续进行第一步操作,直到不可再分为止
    4. * 此时每一层递归都有两个子序列,再将其合并,作为一个有序的子序列返回上一层,再继续合并,全部完成之后得到的就是一个有序的序列
    5. * 关键在于两个子序列应该如何合并。假设两个子序列各自都是有序的,那么合并步骤就是:* 创建一个用于存放结果的临时数组,其长度是两个子序列合并后的长度
    6. * 设定两个指针,最初位置分别为两个已经排序序列的起始位置
    7. * 比较两个指针所指向的元素,选择相对小的元素放入临时数组,并移动指针到下一位置
    8. * 重复步骤 3 直到某一指针达到序列尾
    9. * 将另一序列剩下的所有元素直接复制到合并序列尾
    10. */
    11. public class MergeSort {
    12. public static void main(String[] args) {
    13. int[] arr = new int[]{3, 4, 5, 7, 1, 2, 0, 3, 6, 8};
    14. System.out.printf("排序前:" + Arrays.toString(arr) + "\n");
    15. mergeSort(arr, 0, arr.length - 1);
    16. System.out.printf("排序后:" + Arrays.toString(arr));
    17. }
    18. /**
    19. * 合并数组
    20. */
    21. public static void merge(int[] arr, int low, int middle, int high) {
    22. // 用于存储归并后的临时数组
    23. int[] temp = new int[high - low + 1];
    24. // 记录第一个数组中需要遍历的下标
    25. int i = low;
    26. // 记录第二个数组中需要遍历的下标
    27. int j = middle + 1;
    28. // 记录在临时数组中存放的下标
    29. int index = 0;
    30. // 遍历两个数组,取出小的数字,放入临时数组中
    31. while (i <= middle && j <= high) {
    32. // 第一个数组的数据更小
    33. if (arr[i] <= arr[j]) {
    34. // 把更小的数据放入临时数组中
    35. temp[index] = arr[i];
    36. // 下标向后移动一位
    37. i++;
    38. } else {
    39. temp[index] = arr[j];
    40. j++;
    41. }
    42. index++;
    43. }
    44. // 处理剩余未比较的数据
    45. while (i <= middle) {
    46. temp[index] = arr[i];
    47. i++;
    48. index++;
    49. }
    50. while (j <= high) {
    51. temp[index] = arr[j];
    52. j++;
    53. index++;
    54. }
    55. // 把临时数组中的数据重新放入原数组
    56. for (int k = 0; k < temp.length; k++) {
    57. arr[k + low] = temp[k];
    58. }
    59. }
    60. /**
    61. * 归并排序
    62. */
    63. public static void mergeSort(int[] arr, int low, int high) {
    64. int middle = (high + low) / 2;
    65. if (low < high) {
    66. // 处理左边数组
    67. mergeSort(arr, low, middle);
    68. // 处理右边数组
    69. mergeSort(arr, middle + 1, high);
    70. // 归并
    71. merge(arr, low, middle, high);
    72. }
    73. }
    74. }

    基数排序

    1. /**
    2. * 基数排序:* 基数排序的原理是将整数按位数切割成不同的数字,然后按每个位数分别比较
    3. * 为此需要将所有待比较的数值统一为同样的数位长度,数位不足的数在高位补零
    4. */
    5. public class RadixSort {
    6. public static void main(String[] args) {
    7. int[] arr = new int[]{3, 4, 5, 7, 1, 2, 0, 3, 6, 8};
    8. System.out.printf("排序前:" + Arrays.toString(arr) + "\n");
    9. radixSort(arr);
    10. System.out.printf("排序后:" + Arrays.toString(arr));
    11. }
    12. /**
    13. * 基数排序
    14. */
    15. public static void radixSort(int[] arr) {
    16. // 存放数组中的最大数字
    17. int max = Integer.MIN_VALUE;
    18. for (int value : arr) {
    19. if (value > max) {
    20. max = value;
    21. }
    22. }
    23. // 计算最大数字是几位数
    24. int maxLength = (max + "").length();
    25. // 用于临时存储数据
    26. int[][] temp = new int[10][arr.length];
    27. // 用于记录在 temp 中相应的下标存放数字的数量
    28. int[] counts = new int[10];
    29. // 根据最大长度的数决定比较次数
    30. for (int i = 0, n = 1; i < maxLength; i++, n *= 10) {
    31. // 每一个数字分别计算余数
    32. for (int j = 0; j < arr.length; j++) {
    33. // 计算余数
    34. int remainder = arr[j] / n % 10;
    35. // 把当前遍历的数据放到指定的数组中
    36. temp[remainder][counts[remainder]] = arr[j];
    37. // 记录数量
    38. counts[remainder]++;
    39. }
    40. // 记录取的元素需要放的位置
    41. int index = 0;
    42. // 把数字取出来
    43. for (int k = 0; k < counts.length; k++) {
    44. // 记录数量的数组中当前余数记录的数量不为 0
    45. if (counts[k] != 0) {
    46. // 循环取出元素
    47. for (int l = 0; l < counts[k]; l++) {
    48. arr[index] = temp[k][l];
    49. // 记录下一个位置
    50. index++;
    51. }
    52. // 把数量置空
    53. counts[k] = 0;
    54. }
    55. }
    56. }
    57. }
    58. }

  • 相关阅读:
    Linux——mysql主从复制配置
    第二次笔记: 无符号整数的表示和运算 有符号整数的表示和运算 原码 补码 反码 移码
    回顾meta原数据标签(2),前端基础
    Pandas数据重塑与透视
    处理机调度与死锁
    java计算机毕业设计针对大学生驾考分期平台mp4源程序+mysql+系统+lw文档+远程调试
    3C制造RFID产线智能化升级改造设计方案
    Linux 函数库
    MPLAB X IDE 仿真打断点提示已中断的断点?
    React 组件的3大属性: state
  • 原文地址:https://blog.csdn.net/weixin_53150299/article/details/133677722