LeetCode 442. Find All Duplicates in an Array
Posted Black_Knight
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了LeetCode 442. Find All Duplicates in an Array相关的知识,希望对你有一定的参考价值。
442. Find All Duplicates in an Array
Description Submission Solutions
- Total Accepted: 16589
- Total Submissions: 32282
- Difficulty: Medium
- Contributors: shen5630
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)。
【思路分析】
对数组中的每个元素,把它当作数组的索引,把该索引对应位置的元素取反,如果发现该位置的元素已经取反,那么这个数就是重复出现的数。
【java代码】
1 public class Solution { 2 public List<Integer> findDuplicates(int[] nums) { 3 List<Integer> res = new ArrayList<Integer>(); 4 5 for(int i = 0; i < nums.length; i++) { 6 int index = Math.abs(nums[i]) - 1; 7 if(nums[index] < 0) { 8 res.add(index+1); 9 } 10 nums[index] = -nums[index]; 11 } 12 13 return res; 14 } 15 }
以上是关于LeetCode 442. Find All Duplicates in an Array的主要内容,如果未能解决你的问题,请参考以下文章
442. Find All Duplicates in an Array(LeetCode)
LeetCode - 442. Find All Duplicates in an Array
442. Find All Duplicates in an Array - LeetCode
LeetCode解题思路:442. Find All Duplicates in an Array
LeetCode 442. Find All Duplicates in an Array
LeetCode 448. Find All Numbers Disappeared in an Array & 442. Find All Duplicates in an Array(示例