767. 翻转数组

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;             }     } }  
上一篇:一个mysql表最多可以有几列? 一个mysql表最多可以创建多少个索引? 单个索引最多可以包含多少个列? 一个索引最多可以有多长?这个几个问题你都不一定知道正确答案


下一篇:【优化求解】基于matlab粒子群算法优化调度梯级水电站【含Matlab源码 767期】