Commit 81f41d3e authored by Varshitha Mannem's avatar Varshitha Mannem

change implementation to merge-sort

parent 838eab18
#include "sorting.h" #include "sorting.h"
vector<int> sort_custom(vector<int> a) vector<int> merge(vector<int> left, vector<int> right)
{ {
bool swapp = true; vector<int> result;
while(swapp){ while ((int)left.size() > 0 || (int)right.size() > 0) {
swapp = false; if ((int)left.size() > 0 && (int)right.size() > 0) {
for (size_t i = 0; i < a.size()-1; i++) { if ((int)left.front() <= (int)right.front()) {
if (a[i]>a[i+1] ){ result.push_back((int)left.front());
a[i] += a[i+1]; left.erase(left.begin());
a[i+1] = a[i] - a[i+1]; }
a[i] -=a[i+1]; else {
swapp = true; result.push_back((int)right.front());
} right.erase(right.begin());
} }
} } else if ((int)left.size() > 0) {
return a; for (int i = 0; i < (int)left.size(); i++)
result.push_back(left[i]);
break;
} else if ((int)right.size() > 0) {
for (int i = 0; i < (int)right.size(); i++)
result.push_back(right[i]);
break;
}
}
return result;
} }
vector<int> sort_custom(vector<int> m)
{
if (m.size() <= 1)
return m;
vector<int> left, right, result;
int middle = ((int)m.size()+ 1) / 2;
for (int i = 0; i < middle; i++) {
left.push_back(m[i]);
}
for (int i = middle; i < (int)m.size(); i++) {
right.push_back(m[i]);
}
left = sort_custom(left);
right = sort_custom(right);
result = merge(left, right);
return result;
}
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