首页 > 代码库 > LeetCode 442. Find All Duplicates in an Array
LeetCode 442. Find All Duplicates in an Array
转载请注明出处:http://www.cnblogs.com/liangyongrui/p/6353922.html
开个数组 hash的办法 大家都会。
但是这题不能用辅助空间,所以,我给这个方法起名叫别样hash
因为,所有的数字 都在[1,n] 所以可以用数字的正负来表示hash值
具体见代码。
public List<Integer> findDuplicates(int[] nums) { List<Integer> res = new ArrayList<>(); for (int i = 0; i < nums.length; ++i) { int index = Math.abs(nums[i]) - 1; if (nums[index] < 0) res.add(index + 1); else nums[index] = -nums[index]; } return res; }
LeetCode 442. Find All Duplicates in an Array
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。