diff --git a/counting_sort.c b/counting_sort.c deleted file mode 100644 index 699f22ad..00000000 --- a/counting_sort.c +++ /dev/null @@ -1,33 +0,0 @@ -#include - -void counting_sort(int a[],int n,int max) -{ - int count[50]={0},i,j; - - for(i=0;imax) - max=a[i]; - } - - counting_sort(a,n,max); - return 0; -} \ No newline at end of file