Merge sort
Merge sort - visualization

Merge sort is a stable sorting algorithm based on divide and conquer principle with asymptotic complexity O(n \\cdot \\log{n}). The fundamental idea behind merge sort is merging of already sorted subarrays using additional helper array of size n.

Merge sort was devised in 1945 by John von Neumann.

Description

Merging

Let's suppose that we have two lists (A, B) sorted in descending order. We can merge them into one sorted list (C) using following procedure.

In every step the procedure compares the lists head elements and picks the higher one. Than it copies the element into the list C and removes it from the original list. The algorithm repeats this step until one of the lists A or B is empty. When this happens, procedure copies rest of the remaining list to the C (a deletes the elements in original array).

In fact merge sort always merges two subarrays, which are adjacent to each other. Hence the procedure uses two pointers pointing to the heads of each lists. Than it selects the higher value from one list, copies it to the appropriate position in helper array and than it moves the respective pointer to the next position (new head of the list).

When all the elements are sorted in the helper array, procedure copies them into the original array and overwrites the unsorted lists.

Splitting

So far, we have omitted the fact, how the algorithm gets the already sorted adjacent subarrays. The splitting part of merge sort has the whole array as its input. Merge sort splits this array into two parts of the same size, than it splits recursively into four parts and so one. When it reaches subarrays containing only one element, the recursion stops. At this point algorithm has two adjacent arrays, each containing only one element (which are trivially sorted).

The sorting itself

Merge sort now returns from recursion calling merge procedure on both halves of the array – which must be sorted, because they are either trivial or already merged. When merge sort terminates (returns completely from the recursion), the whole array is sorted in descending order.

Code

     /** 
      * Merge sort (descending order)
      * @param array array to be sorted
      * @param aux auxiliary array of the same size as array
      * @param left first index, which can be touched
      * @param right last index, which can be touched
      */
     public static void mergeSort(int[] array, int[] aux, int left, int right) {
         if (left == right) return; 
         int middleIndex = (left + right)/2;
         mergeSort(array, aux, left, middleIndex);
         mergeSort(array, aux, middleIndex + 1, right);
         merge(array, aux, left, right);
       
         for (int i = left; i <= right; i++) {
             array[i] = aux[i];
         }
     }    
 
     /**
      * Merge procedure for merge sort
      * @param array array to be merged
      * @param aux auxiliary array of the same size as array
      * @param left first index, which can be touched
      * @param right last index, which can be touched
      */
     private static void merge(int[] array, int[] aux, int left, int right) {
         int middleIndex = (left + right)/2;
         int leftIndex = left; 
         int rightIndex = middleIndex + 1;
         int auxIndex = left;
         while (leftIndex <= middleIndex && rightIndex <= right) {
             if (array[leftIndex] >= array[rightIndex]) {
                 aux[auxIndex] = array[leftIndex++];
             } else {
                 aux[auxIndex] = array[rightIndex++];
             }
             auxIndex++;
         }
         while (leftIndex <= middleIndex) {
             aux[auxIndex] = array[leftIndex++];
             auxIndex++;
         }
         while (rightIndex <= right) {
             aux[auxIndex] = array[rightIndex++];
             auxIndex++;
         }
     }    
 
 /** 
  * Merge sort (descending order)
  * @param array array to be sorted
  * @param aux auxiliary array of the same size as array
  * @param left first index, which can be touched
  * @param right last index, which can be touched
  */
 void mergeSort(int array[], int aux[], int left, int right) {
     if (left == right) return; 
     int middleIndex = (left + right)/2;
     mergeSort(array, aux, left, middleIndex);
     mergeSort(array, aux, middleIndex + 1, right);
     merge(array, aux, left, right);
   
     for (int i = left; i <= right; i++) {
         array[i] = aux[i];
     }
 }    
 
 /**
  * Merge procedure for merge sort
  * @param array array to be merged
  * @param aux auxiliary array of the same size as array
  * @param left first index, which can be touched
  * @param right last index, which can be touched
  */
 void merge(int array[], int aux[], int left, int right) {
     int middleIndex = (left + right)/2;
     int leftIndex = left; 
     int rightIndex = middleIndex + 1;
     int auxIndex = left;
     while (leftIndex <= middleIndex && rightIndex <= right) {
         if (array[leftIndex] >= array[rightIndex]) {
             aux[auxIndex] = array[leftIndex++];
         } else {
             aux[auxIndex] = array[rightIndex++];
         }
         auxIndex++;
     }
     while (leftIndex <= middleIndex) {
         aux[auxIndex] = array[leftIndex++];
         auxIndex++;
     }
     while (rightIndex <= right) {
         aux[auxIndex] = array[rightIndex++];
         auxIndex++;
     }
 }    
 
        /** 
         * Merge sort (descending order)
         * @param array array to be sorted
         * @param aux auxiliary array of the same size as array
         * @param left first index, which can be touched
         * @param right last index, which can be touched
         */
         public static void MergeSort(int[] array, int[] aux, int left, int right)
         {
             if (left == right) return;
             int middleIndex = (left + right) / 2;
             MergeSort(array, aux, left, middleIndex);
             MergeSort(array, aux, middleIndex + 1, right);
             Merge(array, aux, left, right);
 
             for (int i = left; i <= right; i++)
             {
                 array[i] = aux[i];
             }
         }
 
        /**
         * Merge procedure for merge sort
         * @param array array to be merged
         * @param aux auxiliary array of the same size as array
         * @param left first index, which can be touched
         * @param right last index, which can be touched
         */
         private static void Merge(int[] array, int[] aux, int left, int right)
         {
             int middleIndex = (left + right) / 2;
             int leftIndex = left;
             int rightIndex = middleIndex + 1;
             int auxIndex = left;
             while (leftIndex <= middleIndex && rightIndex <= right)
             {
                 if (array[leftIndex] >= array[rightIndex])
                 {
                     aux[auxIndex] = array[leftIndex++];
                 }
                 else
                 {
                     aux[auxIndex] = array[rightIndex++];
                 }
                 auxIndex++;
             }
             while (leftIndex <= middleIndex)
             {
                 aux[auxIndex] = array[leftIndex++];
                 auxIndex++;
             }
             while (rightIndex <= right)
             {
                 aux[auxIndex] = array[rightIndex++];
                 auxIndex++;
             }
         } 
 

SEO od společnosti Digital Pylon


Online casino s algoritmem

České casino online online slot-vegas.cz

Hrajte nejlepší hry jako je GoodGame Empire.





Zajímavé články: Jak najít práci snů? Zvolte kariéru v IT!, Češi mají rádi hrací automaty online, Jak funguje algoritmické obchodování Casino, Online výuka Algoritmus a online marketing mají svá pravidla, Automaty, Matematický vliv, Ratings, Jak fungují algoritmy hazardních her online: více znalostí, více peněz, SYPWAI - nástroj pro vědecký vývoj, Vynikají na globálním trhu: Nejlepší vývojáři softwaru pro online výherní automaty, Jak si vybrat nejlepší české online casino, Proč byste měli hrát online casino VPN revoluce, Kde najdeme algoritmy v každodenním životě?, Čeká vás pracovní pohovor mimo město? Podívejte se, jak dokonale zvládnout včasný příchod, 5 úžasných technologií ze světa hazardních her, Mirror and access to Mostbet, Svou kancelář můžete mít stále po ruce, Jaké výhody má digitalizovaná firma oproti off-line konkurenci?, Jaký systém vybrat pro snadné řízení výroby?, Nahradí umělá inteligence ajťáky?, Důvody, proč používat SnapTik ke stahování videí TikTok, Dokonalý den na pláži: Co si vzít s sebou, aby byl výlet zábavný a bezpečný?, Jak přežít dlouhý let?, Go pay GoodGame Empire, Blockchain, Rozhovor


Doporučujeme

Internet pro vaši firmu na míru

https://www.algoritmy.net