29 October 2015

Counting sort

/***
Md. Namzul Hasan
Shahjalal University of Science & Technology,Sylhet.
hasan08sust@gmail.com
***/
#include<bits/stdc++.h>
using namespace std ;
typedef long long ll ;
typedef int in ;
typedef unsigned long long ull ;
const double pi = 2*acos(0) ;
#define maxi 40000
#define pf printf
#define sc scanf
#define pb push_back
#define MEM(x,y) (memset((x),(y),sizeof(x)))
#define MIN(x,y) ((x) < (y) ? (x) : (y))
#define MAX(x,y) ((x) > (y) ? (x) : (y))
#define load(array,size)  for(int i=0 ; i<size ; i++) cin>>array[i]  ;
#define new_line  pf("\n")
#define clear_data(array) memset(array,0,sizeof(array))
#define highest_int 2147483647

int a[1001] ;
int b[1001] ;
int c[1001] ;

void counting_sort(int n, int k)
{
    memset(c,0,sizeof(c)) ;
    for(int i=1 ; i<=n ; i++)
        c[a[i]]++ ;
    for(int i=1 ; i<=k ; i++)
    {
        c[i] = c[i-1] + c[i] ;
    }
    for(int i=n ; i>=1 ; i--)
    {
        b[c[a[i]]] = a[i] ;
        c[a[i]]-- ;
    }
}
int main()
{
    int n ;
    while(sc("%d",&n) &&n)
    {
        int k =0 ;
        for(int i=1; i<=n ; i++)
        {
            sc("%d",&a[i]) ;
            if(a[i]>k)
                k = a[i] ;
        }
        counting_sort(n,k) ;
        for(int i=1 ; i<=n ; i++)
            pf("%d ",b[i]) ;

        pf("\n") ;
    }
}

No comments:

Post a Comment

UVA 10679 - I Love Strings!!