您的位置:首页 > 编程语言 > Java开发

【Leetcode】442. Find All Duplicates in an Array

2017-02-25 12:03 32 查看
442. Find All Duplicates in an Array

Given an array of integers, 1 ≤ a[i] ≤ n (n = size of array), some elements appear twice and others appear once.

Find all the elements that appear twice in this array.

Could you do it without extra space and in O(n) runtime?

Example:

Input:
[4,3,2,7,8,2,3,1]

Output:
[2,3]


Subscribe to see which companies asked this question.
题目简述:
输入一个数组,数组中元素满足 1 ≤ a[i] ≤ n
,输入数组中出现两次的元素。
要求:不能使用额外空间,时间复杂度O(n)
思路简述:
step 1 想到利用数组中索引的信息,按顺序读取数组,假设本轮读取到的数字为A,如果A = -1 或者 A指向自己位置则跳过。
step2 访问数字A对应位置的元素,如果该元素与A相同,将该位置元素置-1,表示A出现过两次。返回step 1。
step3 重新访问数组,-1元素对应的索引+1就是出现两次的元素。

代码:
public class Solution {

    public List<Integer> findDuplicates(int[] nums) {

        List<Integer> res = new ArrayList<Integer>();

        for(int i=0;i<nums.length;){

            int temp = 0;

            if(nums[i] <=0 || nums[i]-1 == i){

                i++;

            }else if(nums[nums[i]-1]!=-1 &&nums[nums[i]-1] != nums[i] ){

                temp = nums[nums[i]-1];

                nums[nums[i]-1] = nums[i];

                nums[i] =temp;

            }else{

                nums[nums[i]-1] = -1;

                i++;

            }

        }

        for(int i=0;i<nums.length;i++){

            if(nums[i] == -1){

                res.add(i+1);

            }

        }

        return res;

    }

}
运行结果:

内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签:  Leetcode java