Advertisement
Aldin-SXR

public sort()

Mar 31st, 2020
222
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.19 KB | None | 0 0
  1. /* Merge sort algorithm (public invocation) */
  2. public static void sort(int[] elements) {
  3.     int[] aux = new int[elements.length];           // 1
  4.     sort(elements, aux, 0, elements.length - 1);    // 2
  5. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement