题目:
Given an array of integers where 1 ≤ a[i] ≤ n (n = size of array), some elements appear twice and others appear once.
Find all the elements of [1, n] inclusive that do not appear in this array.
Could you do it without extra space and in O(n) runtime? You may assume the returned list does not count as extra space.
注意:
写两个循环,从1开始到n所以要减1,然后记录下标。让那个值是负数。
再遍历一下,输出。
Code:
public List<Integer> findDisappearedNumbers(int[] nums) {
List<Integer> ret = new ArrayList<>();
for (int i = 0; i < nums.length; i++) {
int temp = Math.abs(nums[i]) - 1;
if (nums[temp] > 0)
nums[temp] = -nums[temp];
}
for (int i = 0; i < nums.length; i++) {
if (nums[i] > 0)
ret.add(i + 1);
}
return ret;
}