#include void quicksort(int *pole,int left,int right) { int i=left, j=right, v=pole[(left+right)/2], t; do { while(pole[i]