一个数组中的元素头尾两端依次对调

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]);
    }
}
原文地址:https://www.cnblogs.com/flowjacky/p/2758173.html