Commit f516cc67 authored by Rameesh's avatar Rameesh

update implementation to merge sort

parent 5041e021
...@@ -4,7 +4,7 @@ ...@@ -4,7 +4,7 @@
using namespace std; using namespace std;
//This is implementation of Best sorting algorithm viz a viz merge sort
vector<int> mergeSorting(vector<int> arr); vector<int> mergeSorting(vector<int> arr);
vector<int> mergeSorting(vector<int> v); vector<int> mergeSorting(vector<int> v);
vector<int> merge(vector<int> first,vector<int> second){ vector<int> merge(vector<int> first,vector<int> second){
......
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