#ifndef SHELLSORT_H #define SHELLSORT_H //============================================================================= #include "geracao.h" //============================================================================= void insercaoPorCor(int *array, int n, int cor, int h); //============================================================================= void shellsort(int *array, int n); //============================================================================= #endif