2020-06-21 01:34:56 +08:00
|
|
|
/**
|
|
|
|
* \addtogroup sorting Sorting Algorithms
|
2020-06-21 00:11:25 +08:00
|
|
|
* @{
|
2020-06-21 01:34:56 +08:00
|
|
|
* \file
|
2020-06-21 00:11:25 +08:00
|
|
|
* \brief [Merege Sort Algorithm
|
2020-06-21 01:34:56 +08:00
|
|
|
* (MEREGE SORT)](https://en.wikipedia.org/wiki/Merge_sort) implementation
|
|
|
|
*
|
2020-06-21 00:11:25 +08:00
|
|
|
* \author [Ayaan Khan](http://github.com/ayaankhan98)
|
2020-06-21 01:34:56 +08:00
|
|
|
*
|
2020-06-20 23:35:19 +08:00
|
|
|
* \details
|
2020-06-21 01:34:56 +08:00
|
|
|
* Merge Sort is an efficient, general purpose, comparison
|
|
|
|
* based sorting algorithm.
|
|
|
|
* Merge Sort is a divide and conquer algorithm
|
2020-06-20 23:31:59 +08:00
|
|
|
*
|
2020-06-21 01:34:56 +08:00
|
|
|
*/
|
2020-06-20 00:04:56 +08:00
|
|
|
#include <iostream>
|
|
|
|
|
2020-06-21 01:34:56 +08:00
|
|
|
/**
|
|
|
|
*
|
2020-06-20 23:31:59 +08:00
|
|
|
* The merge() function is used for merging two halves.
|
|
|
|
* The merge(arr, l, m, r) is key process that assumes that
|
|
|
|
* arr[l..m] and arr[m+1..r] are sorted and merges the two
|
2020-06-21 01:34:56 +08:00
|
|
|
* sorted sub-arrays into one.
|
|
|
|
*
|
2020-06-21 00:11:25 +08:00
|
|
|
* @param arr - array with two halves arr[l...m] and arr[m+1...l]
|
|
|
|
* @param l - left index or start index of first half array
|
|
|
|
* @param m - right index or end index of first half array
|
2020-06-20 23:31:59 +08:00
|
|
|
*
|
2020-06-21 01:34:56 +08:00
|
|
|
* (The second array starts form m+1 and goes till l)
|
2020-06-20 23:31:59 +08:00
|
|
|
*
|
2020-06-21 00:11:25 +08:00
|
|
|
* @param l - end index or right index of second half array
|
2020-06-21 01:34:56 +08:00
|
|
|
*/
|
2020-06-21 00:11:25 +08:00
|
|
|
void merge(int *arr, int l, int m, int r) {
|
2020-06-20 00:04:56 +08:00
|
|
|
int i, j, k;
|
|
|
|
int n1 = m - l + 1;
|
|
|
|
int n2 = r - m;
|
|
|
|
|
|
|
|
int *L = new int[n1], *R = new int[n2];
|
|
|
|
|
|
|
|
for (i = 0; i < n1; i++) L[i] = arr[l + i];
|
|
|
|
for (j = 0; j < n2; j++) R[j] = arr[m + 1 + j];
|
|
|
|
|
|
|
|
i = 0;
|
|
|
|
j = 0;
|
|
|
|
k = l;
|
|
|
|
while (i < n1 && j < n2) {
|
|
|
|
if (L[i] <= R[j]) {
|
|
|
|
arr[k] = L[i];
|
|
|
|
i++;
|
|
|
|
} else {
|
|
|
|
arr[k] = R[j];
|
|
|
|
j++;
|
|
|
|
}
|
|
|
|
k++;
|
|
|
|
}
|
|
|
|
|
|
|
|
while (i < n1) {
|
|
|
|
arr[k] = L[i];
|
|
|
|
i++;
|
|
|
|
k++;
|
|
|
|
}
|
|
|
|
|
|
|
|
while (j < n2) {
|
|
|
|
arr[k] = R[j];
|
|
|
|
j++;
|
|
|
|
k++;
|
|
|
|
}
|
|
|
|
|
|
|
|
delete[] L;
|
|
|
|
delete[] R;
|
|
|
|
}
|
|
|
|
|
2020-06-21 01:34:56 +08:00
|
|
|
/**
|
|
|
|
* Merge sort is a divide and conquer algorithm, it divides the
|
|
|
|
* input array into two halves and calls itself for the two halves
|
|
|
|
* and then calls merge() to merge the two halves
|
|
|
|
*
|
2020-06-21 00:11:25 +08:00
|
|
|
* @param arr - array to be sorted
|
|
|
|
* @param l - left index or start index of array
|
|
|
|
* @param r - right index or end index of array
|
2020-06-21 01:34:56 +08:00
|
|
|
*
|
|
|
|
*/
|
2020-06-21 00:11:25 +08:00
|
|
|
void mergeSort(int *arr, int l, int r) {
|
2020-06-20 00:04:56 +08:00
|
|
|
if (l < r) {
|
|
|
|
int m = l + (r - l) / 2;
|
|
|
|
mergeSort(arr, l, m);
|
|
|
|
mergeSort(arr, m + 1, r);
|
|
|
|
merge(arr, l, m, r);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-06-21 01:34:56 +08:00
|
|
|
/**
|
2020-06-21 00:11:25 +08:00
|
|
|
* Utility function used to print the array after
|
2020-06-21 01:34:56 +08:00
|
|
|
* sorting
|
|
|
|
*/
|
2020-06-21 00:11:25 +08:00
|
|
|
void show(int *arr, int size) {
|
2020-06-20 23:31:59 +08:00
|
|
|
for (int i = 0; i < size; i++) std::cout << arr[i] << " ";
|
2020-06-21 01:34:56 +08:00
|
|
|
std::cout << "\n";
|
2020-06-20 00:04:56 +08:00
|
|
|
}
|
|
|
|
|
2020-06-21 01:34:56 +08:00
|
|
|
/** Main function */
|
2020-06-20 00:04:56 +08:00
|
|
|
int main() {
|
|
|
|
int size;
|
2020-06-21 01:34:56 +08:00
|
|
|
std::cout << "Enter the number of elements : ";
|
2020-06-20 00:04:56 +08:00
|
|
|
std::cin >> size;
|
|
|
|
int *arr = new int[size];
|
2020-06-21 01:34:56 +08:00
|
|
|
std::cout << "Enter the unsorted elements : ";
|
2020-06-20 00:04:56 +08:00
|
|
|
for (int i = 0; i < size; ++i) {
|
|
|
|
std::cin >> arr[i];
|
|
|
|
}
|
2020-06-20 23:31:59 +08:00
|
|
|
mergeSort(arr, 0, size - 1);
|
2020-06-21 01:34:56 +08:00
|
|
|
std::cout << "Sorted array : ";
|
2020-06-20 23:31:59 +08:00
|
|
|
show(arr, size - 1);
|
2020-06-20 00:04:56 +08:00
|
|
|
delete[] arr;
|
|
|
|
return 0;
|
|
|
|
}
|
2020-06-21 01:21:37 +08:00
|
|
|
/** @} */
|