一个数组中的元素头尾两端依次对调
void reverse_array(int a[],int cnt){ int first,last; for (first = 0,last = cnt - 1;first < last;first ++,last –){ inplace_swap(&a[first],&a[last]); } }
void reverse_array(int a[],int cnt){ int first,last; for (first = 0,last = cnt - 1;first < last;first ++,last –){ inplace_swap(&a[first],&a[last]); } }