aeds2/fonte/u03 Ordenação em memória pr.../c/countingsort.h

9 lines
364 B
C

#ifndef COUNTINGSORT_H
#define COUNTINGSORT_H
//=============================================================================
int getMaior(int *array, int n);
//=============================================================================
void countingsort(int *array, int n);
//=============================================================================
#endif