Advertisement
Aldin-SXR

public sort()

Apr 8th, 2020
273
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.17 KB | None | 0 0
  1. /* Quick sort algorithm (public invocation) */
  2. public static void sort(int[] elements) {
  3.     shuffle(elements);                              // 1
  4.     sort(elements, 0, elements.length - 1);         // 2
  5. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement