11 lines
479 B
C
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
|