11 lines
472 B
C
11 lines
472 B
C
#ifndef QUICKSORT_H
|
|
#define QUICKSORT_H
|
|
//=============================================================================
|
|
#include "geracao.h"
|
|
//=============================================================================
|
|
void quicksortRec(int *array, int esq, int dir);
|
|
//=============================================================================
|
|
void quicksort(int *array, int n);
|
|
//=============================================================================
|
|
#endif
|