#include "quicksort.h" int partition(int* array, int low, int high) { int pivot = array[high]; int i = low -1; int j =low; for (j;j