It is rather hard to imagine that this



for (int i = left; i < right; i++){
for (int j = right; j > i; j--){
if(stocks[j] < stocks[j-1]){
int temp = stocks[j];
stocks[j] =...