首页 > 代码库 > 283. Move Zeroes
283. Move Zeroes
非常不要脸地做一个easy,是fb面经= =……那个人人品也是可以
和remove duplicates from sorted array道理是一样的,用i对整个数组走一遍,然后用index保持有效的位置。最后把index及之后的都填成0就可以了
1 public void moveZeroes(int[] nums) { 2 if(nums.length == 0) { 3 return; 4 } 5 int index = 0; 6 int n = nums.length; 7 for(int i = 0; i < n; i++) { 8 if(nums[i] != 0) { 9 nums[index++] = nums[i]; 10 } 11 } 12 for(int i = index; i < n; i++) { 13 nums[i] = 0; 14 } 15 }
283. Move Zeroes
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。