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

11 lines
479 B
C

#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