数组442. 数组中重复的数据

Posted ocpc

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了数组442. 数组中重复的数据相关的知识,希望对你有一定的参考价值。

题目:

技术图片

 

 

解答:

利用题目中所给信息 1 ≤ a[i] ≤ n ,将出现过的数字作为数组的index(访问元素时需要减一),如果出现一次的,将该index下的数取相反数,记录此时的状态,如果值为index的数字再出现一次(此时index索引的值为负数),那么这个数字就出现了两次。

比如 数组 [2,2,1] , 第一次更新后 index = 2 索引的第元素取相反数 [2,-2,1], 第二次更新 index = 2 , 此时数组元素已为负,所以2就是其中的一个结果。

 1 class Solution {
 2 public:
 3    vector<int> findDuplicates(vector<int>& nums) 
 4    {
 5         vector<int> res;
 6         for(int v:nums)
 7         {
 8             v = abs(v);
 9             if(nums[v-1] < 0) 
10             {
11                 res.push_back(v);
12             }
13             else 
14             {
15                 nums[v-1] = -nums[v-1];
16             }
17         }
18         return res;
19     }
20 };

 

以上是关于数组442. 数组中重复的数据的主要内容,如果未能解决你的问题,请参考以下文章

442. 数组中重复的数据

leetcode 442. 数组中重复的数据

LeetCode 442 数组中重复的数据[哈希表] HERODING的LeetCode之路

442. 数组中重复的数据

442. 数组中重复的数据

442. 数组中重复的数据