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