MCPcopy Create free account
hub / github.com/codemistic/Data-Structures-and-Algorithms / main

Function main

CPP/sorting/shellsort.cpp:24–31  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

22 }
23}
24int main() {
25 int A[] = {11,13,7,12,16,9,24,5,10,3}, n = 10, i;
26 SellSort(A, n);
27 for (i = 0; i < 10; i++)
28 printf("%d ", A[i]);
29 printf("\n");
30 return 0;
31}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected