767. 翻转数组
原地翻转给出的数组
nums
样例
样例 1:
输入 : nums = [1,2,5]
输出 : [5,2,1]
注意事项
原地意味着你不能使用额外空间
public class Solution {
/**
* @param nums: a integer array
* @return: nothing
*/
public void reverseArray(int[] nums) {
// write your code here
int length=nums.length;
int temp;
for (int i = 0; i < nums.length/2; i++) {
length--;
temp=nums[i];
nums[i]= nums[length];
nums[length]=temp;
}
}
}