学到一种新的将数组reverse的方式。while(start<end) { temp = array[start]; array[start++] = array[end]; array[end--] = temp;}