| Algorithms_in_C++ 1.0.0
    Set of algorithms implemented in C++. | 
Merege Sort Algorithm (MEREGE SORT) implementation More...
#include <iostream>| Functions | |
| void | merge (int *arr, int l, int m, int r) | 
| void | mergeSort (int *arr, int l, int r) | 
| void | show (int *arr, int size) | 
| int | main () | 
Merege Sort Algorithm (MEREGE SORT) implementation
Merge Sort is an efficient, general purpose, comparison based sorting algorithm. Merge Sort is a divide and conquer algorithm