


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!

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

The recursion depth of C++ functions is limited, and exceeding this limit will result in a stack overflow error. The limit value varies between systems and compilers, but is usually between 1,000 and 10,000. Solutions include: 1. Tail recursion optimization; 2. Tail call; 3. Iterative implementation.

Yes, C++ Lambda expressions can support recursion by using std::function: Use std::function to capture a reference to a Lambda expression. With a captured reference, a Lambda expression can call itself recursively.

The recursive algorithm solves structured problems through function self-calling. The advantage is that it is simple and easy to understand, but the disadvantage is that it is less efficient and may cause stack overflow. The non-recursive algorithm avoids recursion by explicitly managing the stack data structure. The advantage is that it is more efficient and avoids the stack. Overflow, the disadvantage is that the code may be more complex. The choice of recursive or non-recursive depends on the problem and the specific constraints of the implementation.

A recursive function is a technique that calls itself repeatedly to solve a problem in string processing. It requires a termination condition to prevent infinite recursion. Recursion is widely used in operations such as string reversal and palindrome checking.

Recursion is a powerful technique that allows a function to call itself to solve a problem. In C++, a recursive function consists of two key elements: the base case (which determines when the recursion stops) and the recursive call (which breaks the problem into smaller sub-problems ). By understanding the basics and practicing practical examples such as factorial calculations, Fibonacci sequences, and binary tree traversals, you can build your recursive intuition and use it in your code with confidence.

According to statistics on March 2, the total TVL of Bitcoin’s second-layer network MerlinChain has reached US$3 billion. Among them, Bitcoin ecological assets accounted for 90.83%, including BTC worth US$1.596 billion and BRC-20 assets worth US$404 million. Last month, MerlinChain’s total TVL reached US$1.97 billion within 14 days of launching staking activities, surpassing Blast, which was launched in November last year and is also the most recent and equally eye-catching. On February 26, the total value of NFTs in the MerlinChain ecosystem exceeded US$420 million, becoming the public chain project with the highest NFT market value besides Ethereum. Project Introduction MerlinChain is an OKX support

Tail recursion optimization (TRO) improves the efficiency of certain recursive calls. It converts tail-recursive calls into jump instructions and saves the context state in registers instead of on the stack, thereby eliminating extra calls and return operations to the stack and improving algorithm efficiency. Using TRO, we can optimize tail recursive functions (such as factorial calculations). By replacing the tail recursive call with a goto statement, the compiler will convert the goto jump into TRO and optimize the execution of the recursive algorithm.

Recursive definition and optimization: Recursive: A function calls itself internally to solve difficult problems that can be decomposed into smaller sub-problems. Tail recursion: The function performs all calculations before making a recursive call, which can be optimized into a loop. Tail recursion optimization condition: recursive call is the last operation. The recursive call parameters are the same as the original call parameters. Practical example: Calculate factorial: The auxiliary function factorial_helper implements tail recursion optimization, eliminates the call stack, and improves efficiency. Calculate Fibonacci numbers: The tail recursive function fibonacci_helper uses optimization to efficiently calculate Fibonacci numbers.
