首页 > 代码库 > LeetCode 442. Find All Duplicates in an Array
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
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。