9 lines
364 B
C
9 lines
364 B
C
#ifndef COUNTINGSORT_H
|
|
#define COUNTINGSORT_H
|
|
//=============================================================================
|
|
int getMaior(int *array, int n);
|
|
//=============================================================================
|
|
void countingsort(int *array, int n);
|
|
//=============================================================================
|
|
#endif
|