MCPcopy Create free account
hub / github.com/PrajaktaSathe/Java / main

Method main

Programs/BucketSort.java:37–45  ·  view source on GitHub ↗
(String[] args)

Source from the content-addressed store, hash-verified

35
36 // Driver code
37 public static void main(String[] args) {
38 BucketSort b = new BucketSort();
39 float[] arr = { (float) 0.42, (float) 0.32, (float) 0.33, (float) 0.52, (float) 0.37, (float) 0.47,
40 (float) 0.51 };
41 b.bucketSort(arr, 7);
42
43 for (float i : arr)
44 System.out.print(i + " ");
45 }
46}

Callers

nothing calls this directly

Calls 2

bucketSortMethod · 0.95
printMethod · 0.80

Tested by

no test coverage detected