Skip to content

Instantly share code, notes, and snippets.

@dj-amadeous
Created December 4, 2016 02:50
Show Gist options
  • Save dj-amadeous/249fd8b3677a502a9fa52f422f2289a7 to your computer and use it in GitHub Desktop.
Save dj-amadeous/249fd8b3677a502a9fa52f422f2289a7 to your computer and use it in GitHub Desktop.
public static void mergeSort_srt(int array[], int lo, int n) {
int low = lo;
int high = n;
if (low >= high) {
return;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment