算法

LeetCode56-Ⅰ,数组中数字出现的次数

2020-04-28  本文已影响0人  _NewMoon

一个整型数组 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 <= 10000
来源:力扣(LeetCode)
链接:https://leetcode-cn.com/problems/shu-zu-zhong-shu-zi-chu-xian-de-ci-shu-lcof

题目分析:如果想要通过,用一个哈希表就行了,但这一题要求时间复杂度是O(n),空间复杂度是O(1),所以考察的地方绝对不是使用哈希表,这一题考察的是位运算中异或运算的相关性质。所以在这里记录一下:

class Solution {
public:
    vector<int> singleNumbers(vector<int>& nums) {
        //vector<int> ans;
        int n = nums.size();
        
        //性质1
        int t = 0;
        for(auto&x: nums) t^=x;    //循环结束后 t = A ^ B(A,B是答案)
        
        //按最后一个1的位置对原数组分类,性质5
        int ans = 0;
        int flag = t&(-t);
        
        for(auto &x:nums){
            if(x&flag) ans ^= x;  //性质1
        }
        return {ans,ans^t};  //性质4
    }
};
上一篇下一篇

猜你喜欢

热点阅读