Quick sort algorithm troubles[code]void quicksort(vector<int> &data, int start, int end) { int i=start,j=end; int l; ...