2021.05.14O(n)时间+O(1)空间求数组中的重复数据
题目描述
给定一个整数数组 a,其中1 ≤ a[i] ≤ n (n为数组长度), 其中有些元素出现两次而其他元素出现一次。
找到所有出现两次的元素。
你可以不用到任何额外空间并在O(n)时间复杂度内解决这个问题吗?
代码
public List<Integer> findDuplicates(int[] nums) {
List<Integer> res = new ArrayList<Integer>();
for(int i = 0; i < nums.length; i++) {
int t = Math.abs(nums[i]);
if(nums[t] > 0) {
nums[t] *= -1;
} else res.add(t);
}
return res;
}