Skip to content
Snippets Groups Projects
Commit 27ebc8e1 authored by Lawrence Chung's avatar Lawrence Chung
Browse files

mergeSort flawed attempt

parent adc45061
No related branches found
No related tags found
No related merge requests found
......@@ -24,7 +24,7 @@ public class mergeSort implements GeneralCompare{
else if(mid+1 > n)
gc[i] = aux[2];
else if(compare(aux[mid+1],aux[1]) < 0)
gc[i] = aux[i];
gc[i] = aux[i]; //fill statement (incorrect)
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment