#pragma once #include void quicksort(int*, int, int); int partition(int*, int, int, int); int median3(int*,int,int); void swap(int &, int &);