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

Function main

CPP/sorting/countingsort.cpp:36–45  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

34 cout<<endl;
35}
36signed main(){
37 int arr[]={1,1,23,42,11,31,533,7432};
38 int n;
39 n=sizeof(arr)/sizeof(int);
40 counting_sort(arr,n);
41 printarray1(arr,n);
42
43
44 return 0;
45}

Callers

nothing calls this directly

Calls 2

counting_sortFunction · 0.85
printarray1Function · 0.85

Tested by

no test coverage detected