MCPcopy Create free account
hub / github.com/Rishabh062/Hacktoberfest2021 / main

Method main

Java/CocktailSort.java:71–78  ·  view source on GitHub ↗
(String[] args)

Source from the content-addressed store, hash-verified

69
70 // Driver code
71 public static void main(String[] args)
72 {
73 CocktailSort ob = new CocktailSort();
74 int a[] = { 5, 1, 4, 2, 8, 0, 2 };
75 ob.cocktailSort(a);
76 System.out.println("Sorted array");
77 ob.printArray(a);
78 }
79}

Callers

nothing calls this directly

Calls 2

cocktailSortMethod · 0.95
printArrayMethod · 0.95

Tested by

no test coverage detected