9 lines
128 B
C
9 lines
128 B
C
#ifndef QUICKSORT
|
|
#define QUICKSORT
|
|
|
|
#include <stdlib.h>
|
|
#include <time.h>
|
|
|
|
void quicksort(double * array, int length);
|
|
|
|
#endif
|