欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

LeetCode 442. Find All Duplicates in an Array (Medium)

程序员文章站 2024-02-17 12:07:58
...
Description:

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]

Analysis:

Traverse the array, and in each iteration, we multiply nums[abs(nums[i])-1]  by -1. After each multiplication, we check the value of nums[abs(nums[i])-1], if the value is above 0, it means that abs(nums[i])  occurs twice otherwise it only occurs once.


Code:
class Solution {
    public List<Integer> findDuplicates(int[] nums) {
        List<Integer> rs = new ArrayList<>();
        
        for(int i = 0; i < nums.length; i++) {
            nums[Math.abs(nums[i])-1] *= -1;
            if(nums[Math.abs(nums[i])-1] > 0) {
                rs.add(Math.abs(nums[i]));
            }
        }
        
        return rs;
    }
}

Complexity:

Time complexity: O(n)O(n) where nn represents the length of array numsnums.
Space complexity: O(n)O(n), but the program doesn’t use extra space except the ListList that stores the results.

相关标签: LeetCode leetcode