41 #ifndef _QUICK_SORT_H_
42 #define _QUICK_SORT_H_
48 void Quicksort(
float* pValues,
int nLow,
int nHigh);
void QuicksortInverseWithMeta(float *pValues, void **ppMeta, int nLow, int nHigh)
void QuicksortWithMeta(float *pValues, void **ppMeta, int nLow, int nHigh)
void Quicksort(float *pValues, int nLow, int nHigh)
void QuicksortInverse(float *pValues, int nLow, int nHigh)
void QuicksortByElementOfVector(float **ppValues, int nLow, int nHigh, int nSortByDimension)