力扣——数组中重复的数据

给定一个整数数组 a,其中1 ≤ a[i] ≤ n (n为数组长度), 其中有些元素出现两次而其他元素出现一次。

找到所有出现两次的元素。

你可以不用到任何额外空间并在O(n)时间复杂度内解决这个问题吗?

示例:

输入:
[4,3,2,7,8,2,3,1]

输出:
[2,3]

class Solution {
    public List<Integer> findDuplicates(int[] nums) {   
        List<Integer> result = new ArrayList<>();

        if (nums == null || nums.length == 0)
            return result;

        int[] count = new int[nums.length];
        for (int num : nums) {
            count[num - 1]++;
        }

        for (int i = 0; i < count.length; i++) {
            if (count[i] > 1) {
                result.add(i+1);
            }
        }
        return result;
    }
}

 

posted @ 2019-03-27 22:36  JAYPARK01  阅读(79)  评论(0编辑  收藏  举报