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

Function main

CPP/sorting/radix_sort.cpp:61–66  ·  view source on GitHub ↗

Driver code

Source from the content-addressed store, hash-verified

59
60// Driver code
61int main() {
62 int array[] = {121, 432, 564, 23, 1, 45, 788};
63 int n = sizeof(array) / sizeof(array[0]);
64 radixsort(array, n);
65 printArray(array, n);
66}

Callers

nothing calls this directly

Calls 2

radixsortFunction · 0.85
printArrayFunction · 0.70

Tested by

no test coverage detected