LeetCode 442. Find All Duplicates in an Array
生活随笔
收集整理的這篇文章主要介紹了
LeetCode 442. Find All Duplicates in an Array
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
442. Find All Duplicates in an Array
Add to ListDescription?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 }?
轉載于:https://www.cnblogs.com/liujinhong/p/6416666.html
總結
以上是生活随笔為你收集整理的LeetCode 442. Find All Duplicates in an Array的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 迟来的2017年计划
- 下一篇: mybatis入门-第一个程序