update implementation to merge-sort

parent d44604ac
#include "sorting.h"
using namespace std ;
//random
void merge(int arr[], int l, int m, int r)
{
int i, j, k;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment