(String[] args)
| 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 | } |
nothing calls this directly
no test coverage detected