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

Method main

Programs/QuickSort.java:9–13  ·  view source on GitHub ↗
(String args[])

Source from the content-addressed store, hash-verified

7
8public class QuickSort{
9 public static void main(String args[]){
10 int arr[]= {-1,-2,42,1,24,44,32,0,12,100};
11 quickSort(arr,0,arr.length-1);
12 System.out.println(Arrays.toString(arr));
13 }
14
15
16 public static void quickSort(int arr[],int i, int j){

Callers

nothing calls this directly

Calls 2

quickSortMethod · 0.95
toStringMethod · 0.80

Tested by

no test coverage detected