其他分享
首页 > 其他分享> > Leetcode-剑指 Offer 56 - I: 数组中数字出现的次数

Leetcode-剑指 Offer 56 - I: 数组中数字出现的次数

作者:互联网

链接

力扣icon-default.png?t=M0H8https://leetcode-cn.com/problems/shu-zu-zhong-shu-zi-chu-xian-de-ci-shu-lcof/

题目

一个整型数组 nums 里除两个数字之外,其他数字都出现了两次。请写程序找出这两个只出现一次的数字。要求时间复杂度是O(n),空间复杂度是O(1)。

示例

示例 1:
输入:nums = [4,1,4,6]
输出:[1,6] 或 [6,1]

示例 2:
输入:nums = [1,2,10,4,1,4,3,3]
输出:[2,10] 或 [10,2]

限制

  • 2 <= nums.length <= 10000

C++ Code

class Solution {
public:
    vector<int> singleNumbers(vector<int>& nums) {
        //得到要求的两个数x和y相与的结果xy
        int xy=0;
        for(int n:nums) xy^=n;
        //得到xy的值为1的最低位
        int m=1;
        while((xy&m)==0) m<<=1;
        //分组分别计算
        int x=0,y=0;
        for(int n:nums)
        {
            if((n&m)==0) x=x^n;
            else y=y^n;
        }
        return vector<int> {x, y};

    }
};

思路

参考题解评论,作者那我总不能天天CV吧

标签:10,数字,nums,Offer,56,异或,xy,数组,Leetcode
来源: https://blog.csdn.net/qq_40682833/article/details/122802726