Home >Java >javaTutorial >Detailed explanation of merge sort (non-recursive) example of java comparison sort
In the previous section, we explained the recursive version of merge sort "4. Comparative Sort - Merge Sort (Recursive)". Generally speaking, the recursive version of merge sort is more commonly used. This section briefly introduces the non-recursive version. of merge sort. The idea is the same as the recursive version, which is to decompose first and then merge. The focus of non-recursion is how to determine and reasonably decompose the array to be sorted.
For non-recursion, the segmentation does not go from large to small in the direction of recursion. Non-recursion actually starts from small to large when building the algorithm.
For the first time of segmentation and sorting, the minimum unit is determined to be 1 number, and the 2 numbers are combined into a group.
package com.algorithm.sort.mergenonrecursive; import java.util.Arrays; /** * 归并排序(非递归) * Created by yulinfeng on 2017/6/24. */ public class Merge { public static void main(String[] args) { int[] nums = {6, 5, 3, 1, 7, 2, 4}; nums = mergeSort(nums); System.out.println(Arrays.toString(nums)); } /** * 归并排序(非递归) * 从切分的数组长度为1开始,一次归并变回原来长度的2倍 * @param nums 待排序数组 * @return 排好序的数组 */ private static int[] mergeSort(int[] nums) { int len = 1; while (len <= nums.length) { for (int i = 0; i + len <= nums.length; i += len * 2) { int low = i, mid = i + len - 1, high = i + 2 * len - 1; if (high > nums.length - 1) { high = nums.length - 1; //整个待排序数组为奇数的情况 } merge(nums, low, mid, high); } len *= 2; } return nums; } /** * 将切分的数组进行归并排序,同递归版 * @param nums 带排序数组 * @param low 左边数组第一个元素索引 * @param mid 左边数组最后一个元素索引,mid + 1为右边数组第一个元素索引 * @param high 右边数组最后一个元素索引 */ private static void merge(int[] nums, int low, int mid, int high) { int[] tmpArray = new int[nums.length]; int rightIndex = mid + 1; int tmpIndex = low; int begin = low; while (low <= mid && rightIndex <= high) { if (nums[low] <= nums[rightIndex]) { tmpArray[tmpIndex++] = nums[low++]; } else { tmpArray[tmpIndex++] = nums[rightIndex++]; } } while (low <= mid) { tmpArray[tmpIndex++] = nums[low++]; } while (rightIndex <= high) { tmpArray[tmpIndex++] = nums[rightIndex++]; } while (begin <= high) { nums[begin] = tmpArray[begin++]; } } }
The above is the detailed content of Detailed explanation of merge sort (non-recursive) example of java comparison sort. For more information, please follow other related articles on the PHP Chinese website!