Sorting algorithm—merge sort [with code]
#What is merge sort?
Simply speaking, merge sort is to integrate two ordered sequences together.
Recommended tutorial: PHP video tutorial
How to combine two ordered sequences What about integrating them together?
Then we assume that we now have M = {m1, m2, m3, ...., mx} sequence and N = {n1, n2, n3, ...., ny} sequence, these two sequences are already ordered sequences. First create an empty sequence K = {}, then compare m1 and n1, add m1 < n1, then put m1 into the K sequence, and then M The sequence cursor moves backward, that is, m2 and n1 will be compared next time until all comparisons are completed and filled in sequence K.
Since merge sort is to integrate ordered sequences, doesn’t it mean that unordered sequences cannot be sorted? This condition is too harsh, right?
Merge sort is based on the divide and conquer method, that is, a completely disordered sequence can be divided wirelessly to achieve an ordered sequence. For example: Now there is M={m1, m2, m3, ...., mx}, the M sequence is a completely disordered sequence, then the M sequence can be divided into several small sequences - {m1, m2}, {m3, m4 }....{mx-1, mx}; At this time, these sequences are in order, then they can be sorted through the merge operation, so merge sort can also sort unordered sequences, and its speed is second only to quick sort, which belongs to Stable sorting.
How to split the sequence?
The previous question has been mentioned. Merge sort is based on divide and conquer. The embodiment of divide and conquer is reflected in the partition sequence. For example: now there are M ={m1, m2, m3, ...., mx}, the first division: M1 = {m1, m2, ..., m(x 1)/2}, M2 = {m(x 1)/ 2 1, m(x 1)/2 2,...,mx}, after the first division, we get M1 and M2 sequences, and then divide M1 and M2 again, and after dividing several times, we get x/2 x%2 sequences , and then perform the merge operations one by one.
The specific steps of this algorithm:
1. Specify the first pointer left and mid (left points to the first element of sequence 1, right points to sequence 2 The first element)
2. Compare the sizes of left and mid and put the small elements into the newly created space
3. Repeat step 2 until one of the sequences has been traversed
4. Copy and paste the remaining elements that have not been added to the new space directly into the new space
The core steps of the algorithm:
1. Use the divide-and-conquer method (recursion) to split the sequence
2. Compare the sizes of left and mid, and add small elements into the new space
narration Completed, paste the code:
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace 排序__归并排序 { class 归并 { public static int[] arr = { 6, 202, 301, 100, 38, 8, 1 ,-1,1000}; static void Main(string[] args) { Sort(arr, 0, arr.Length -1); foreach (var item in arr) { Console.Write(item + " "); } Console.ReadKey(); } public static void Sort(int []a,int left,int right) { if (left >= right) return; else { int mid = (left + right) / 2; //@1 Sort(a, left, mid); Sort(a, mid + 1, right); MergeSort(a, left, mid, right); } } public static void MergeSort(int []a,int left,int mid,int right) { int[] Arr = new int[right - left + 1]; int l = left, m = mid +1 , k = 0; //@2 while ( m <= right && l <= mid ) //@3 { if (a[l] > a[m]) Arr[k++] = a[m++]; else Arr[k++] = a[l++]; } while (m < right +1) //@4 { Arr[k++] = a[m++]; } while (l < mid +1 ) Arr[k++] = a[l++]; //@4 for (k = 0, l = left; l < right + 1; k++, l++) a[l] = Arr[k]; } } }
Code interpretation:
@1: The Sort() function completes the segmentation of the sequence. Each recursion divides the sequence into two halves until it cannot be separated.
@2: l represents the first element of sequence 1, m represents the first element of sequence 2, k represents the number of existing elements in the new array Arr
@3: The first element of sequence 1 Compare with the first element of sequence 2, put the small one into Arr, and move the sequence cursor back until the elements of one of the sequences are compared.
@4: The comparison process between sequence 1 and sequence 2 , it may appear that sequence 1 has all been added to Arr, but sequence 2 has not, then the remaining uncompared elements will be copied directly into Arr
##Summary:
The above code does not split the array in the true sense. It just makes a logical split. It does not fill the split array into a new array like other codes. Doing so will have a slight impact on speed and memory. Although it is minimal, it is not so good after all. In the merge operation, you need to pay attention to the parameters not crossing the boundary (I thought for a long time why the m above @2 should be equal to mid 1 instead of mid. In fact, the reason is very simple, because Mid belongs to the left sequence, and only belongs to the right sequence starting from mid 1. It is not impossible to change m = mid 1 to m = mid, but the subsequent code also needs to be changed, but there is no need to do one more useless comparison. I really thought about this problem at the time After thinking about it for a long time...), in fact, as long as the logical relationship is clarified, the code can be easily grasped.
The above is the detailed content of Sorting algorithm—merge sort [with code]. 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

1. Background of the problem 1. Introduction to the two-sided market experiment The two-sided market, that is, a platform, includes two participants, producers and consumers, and both parties promote each other. For example, Kuaishou has a video producer and a video consumer, and the two identities may overlap to a certain extent. Bilateral experiment is an experimental method that combines groups on the producer and consumer sides. Bilateral experiments have the following advantages: (1) The impact of the new strategy on two aspects can be detected simultaneously, such as changes in product DAU and the number of people uploading works. Bilateral platforms often have cross-side network effects. The more readers there are, the more active the authors will be, and the more active the authors will be, the more readers will follow. (2) Effect overflow and transfer can be detected. (3) Help us better understand the mechanism of action. The AB experiment itself cannot tell us the relationship between cause and effect, only

Organizing | Nuka-Cola, Chu Xingjuan Friends who have taken basic computer science courses must have personally designed a sorting algorithm - that is, using code to rearrange the items in an unordered list in ascending or descending order. It's an interesting challenge, and there are many possible ways to do it. A lot of time has been invested in figuring out how to accomplish sorting tasks more efficiently. As a basic operation, sorting algorithms are built into the standard libraries of most programming languages. There are many different sorting techniques and algorithms used in code bases around the world to organize large amounts of data online, but at least as far as the C++ libraries used with the LLVM compiler are concerned, the sorting code has not changed in more than a decade. Recently, the Google DeepMindAI team has now developed a

How to filter and sort data in Vue technology development In Vue technology development, data filtering and sorting are very common and important functions. Through data filtering and sorting, we can quickly query and display the information we need, improving user experience. This article will introduce how to filter and sort data in Vue, and provide specific code examples to help readers better understand and use these functions. 1. Data filtering Data filtering refers to filtering out data that meets the requirements based on specific conditions. In Vue, we can pass comp

Array sorting algorithms are used to arrange elements in a specific order. Common types of algorithms include: Bubble sort: swap positions by comparing adjacent elements. Selection sort: Find the smallest element and swap it to the current position. Insertion sort: Insert elements one by one to the correct position. Quick sort: divide and conquer method, select the pivot element to divide the array. Merge Sort: Divide and Conquer, Recursive Sorting and Merging Subarrays.

Swoole is a high-performance network communication framework based on PHP language. It supports the implementation of multiple asynchronous IO modes and multiple advanced network protocols. On the basis of Swoole, we can use its multi-threading function to implement efficient algorithm operations, such as high-speed sorting algorithms. The high-speed sorting algorithm (QuickSort) is a common sorting algorithm. By locating a benchmark element, the elements are divided into two subsequences. Those smaller than the benchmark element are placed on the left, and those greater than or equal to the benchmark element are placed on the right. Then the left and right subsequences are placed. subsequence recursion

How to use MySQL and Java to implement a simple sorting algorithm function Introduction: In software development, sorting algorithms are one of the most basic and commonly used functions. This article will introduce how to use MySQL and Java to implement a simple sorting algorithm function, and provide specific code examples. 1. Overview of sorting algorithms Sorting algorithms are algorithms that arrange a set of data according to specific rules. Commonly used sorting algorithms include bubble sort, insertion sort, selection sort, quick sort, etc. This article will use bubble sorting as an example to explain and implement it. 2. M

How to implement the selection sort algorithm in C# Selection sort (SelectionSort) is a simple and intuitive sorting algorithm. Its basic idea is to select the smallest (or largest) element from the elements to be sorted each time and put it at the end of the sorted sequence. Repeat this process until all elements are sorted. Let's learn more about how to implement the selection sort algorithm in C#, along with specific code examples. Creating a selection sort method First, we need to create a method for implementing selection sort. This method accepts a

Sorting algorithms can be said to be something that every programmer must master. It is necessary to understand their principles and implementation. The following is an introduction to the python implementation of the top ten commonly used sorting algorithms to facilitate your learning.
