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

Remove uncertain comments

parent 57535e18
No related branches found
No related tags found
No related merge requests found
......@@ -19,10 +19,10 @@ public class mergeSort implements GeneralCompare{
}
for(int k = 1; k <= n; k++){
if(i > j-1) //Should these not be a[i] and a[mid]?
if(i > j-1)
gc[k] = aux[j++];
else if(j > n) //^
gc[k] = aux[2];
else if(j > n)
gc[k] = aux[i++];
else if(compare(aux[j+1],aux[1]) < 0)// ?
gc[k] = aux[j++];
else
......
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