\'\'\'
#include using namespace std; void swap(int *low, int *high){ int temp = *low; *low = *high; *high = temp; } void printarr