MCPcopy
hub / github.com/kevin-wayne/algs4 / show

Method show

src/main/java/edu/princeton/cs/algs4/Quick.java:157–161  ·  view source on GitHub ↗
(Comparable[] a)

Source from the content-addressed store, hash-verified

155
156 // print array to standard output
157 private static void show(Comparable[] a) {
158 for (int i = 0; i < a.length; i++) {
159 StdOut.println(a[i]);
160 }
161 }
162
163 /**
164 * Reads in a sequence of strings from standard input; quicksorts them;

Callers 1

mainMethod · 0.95

Calls 1

printlnMethod · 0.95

Tested by

no test coverage detected