当前位置:   article > 正文

java归并排序(含归并排序代码)_归并排序java代码

归并排序java代码

目录

一:归并排序的思想

二:归并排序代码

三:归并排序结果​


一:归并排序的思想

归并排序(Merge Sort)

当我们要排序这样一个数组的时候,归并排序法首先将这个数组分成一半。如图:

然后想办法把左边的数组给排序,右边的数组给排序,之后呢再将它们归并起来。当然了当我们对左边的数组和右边的素组进行排序的时候,再分别将左边的数组和右边的数组分成一半,然后对每一个部分先排序,再归并。如图:对于上面的每一个部分呢,我们依然是先将他们分半,再归并,如图:

分到一定细度的时候,每一个部分就只有一个元素了,那么我们此时不用排序,对他们进行一次简单的归并就好了。如图:归并到上一个层级之后继续归并,归并到更高的层级,如图:直至最后归并完成。

二:归并排序代码

  1. package totoSort;
  2. import java.util.Arrays;
  3. public class Msort {
  4. public static void main(String[] args) {
  5. int[] arrays = new int[] {1,5,4,3,2};
  6. sort(arrays,0,arrays.length - 1);
  7. System.out.print(Arrays.toString(arrays));
  8. }
  9. public static void sort(int[] arr, int left, int right) {
  10. int[] temp = new int[arr.length];
  11. if(left >= right) {
  12. return;
  13. }
  14. int mid = (left + right)/2; // 2
  15. sort(arr,left,mid);
  16. sort(arr, mid + 1, right);
  17. int i = left;
  18. int j = mid + 1;
  19. int t = 0;
  20. while(i <= mid && j <= right) {
  21. if(arr[i] <= arr[j]) {
  22. temp[t] = arr[i];
  23. i++;
  24. t++;
  25. }else {
  26. temp[t] = arr[j];
  27. j++;
  28. t++;
  29. }
  30. }
  31. while(i <= mid) {
  32. temp[t] = arr[i];
  33. i++;
  34. t++;
  35. }
  36. while(j <= right) {
  37. temp[t] = arr[j];
  38. j++;
  39. t++;
  40. }
  41. int k = 0;
  42. int tempIndex = left;
  43. while(tempIndex <= right) {
  44. arr[tempIndex] = temp[k];
  45. k++;
  46. tempIndex++;
  47. }
  48. }
  49. }

三:归并排序结果 

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

闽ICP备14008679号