MCPcopy Create free account
hub / github.com/Seogeurim/CS-study / main

Method main

contents/algorithm/code/QuickSort.java:43–50  ·  view source on GitHub ↗
(String[] args)

Source from the content-addressed store, hash-verified

41 }
42
43 public static void main(String[] args) {
44 int[] arr = { 3, 7, 6, 5, 1, 4, 2 };
45 System.out.println(Arrays.toString(arr) + " start");
46
47 quickSort(arr, 0, 6);
48
49 System.out.println(Arrays.toString(arr) + " finish");
50 }
51}

Callers

nothing calls this directly

Calls 2

quickSortMethod · 0.95
toStringMethod · 0.45

Tested by

no test coverage detected