当前位置:   article > 正文

LC-442-数组中重复的数据_c 语言 442 重复错误码

c 语言 442 重复错误码

问题描述:

给你一个长度为 n 的整数数组 nums ,其中 nums 的所有整数都在范围 [1, n] 内,且每个整数出现 一次 或 两次 。请你找出所有出现 两次 的整数,并以数组形式返回。

你必须设计并实现一个时间复杂度为 O(n) 且仅使用常量额外空间的算法解决此问题。

解题思路:

不太懂,懂了来写

代码实现:

示例:

在这里插入输入:
nums = [4,3,2,7,8,2,3,1]
输出:[2,3]

输入:nums = [1,1,2]
输出:[1]

输入:nums = [1]
输出:[]
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
在这里插入代class Solution {
public:
    vector<int> findDuplicates(vector<int>& nums) 
    {
        vector<int> res;
        int n=nums.size();
        for(int i=0;i<nums.size();i++)
        {
            int index=(nums[i]-1)%n;
            nums[index]+=n;
            if(nums[index]>2*n)res.push_back(index+1);
        }
        return res;
    }
};码片
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15

优化方式:

NULL

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/Monodyee/article/detail/390586
推荐阅读
相关标签
  

闽ICP备14008679号