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

Questions about conditional and GeneralCompare issues

parent 77475749
No related branches found
No related tags found
No related merge requests found
......@@ -24,7 +24,7 @@ public class mergeSort implements GeneralCompare{
else if(j > n) //^
gc[k] = aux[2];
else if(compare(aux[j+1],aux[1]) < 0)// ?
gc[k] = aux[j++]; //fill statement (incorrect)
gc[k] = aux[j++];
else
gc[k] = aux[i++];
}
......
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