码迷,mamicode.com
首页 > 编程语言 > 详细

【剑指offer】【位运算】56 - II. 数组中数字出现的次数 II

时间:2020-04-23 13:46:04      阅读:73      评论:0      收藏:0      [点我收藏+]

标签:off   数组   vector   number   enum   single   cto   solution   运算   

位运算 + 状态转移

class Solution {
public:
    int singleNumber(vector<int>& nums) {
        int once, twice = 0;
        for(int i = 0; i < nums.size(); i++)
        {
            once = once ^ nums[i] & ~twice;
            twice = twice ^ nums[i] & ~once;
        }
        return once;
    }
};

【剑指offer】【位运算】56 - II. 数组中数字出现的次数 II

标签:off   数组   vector   number   enum   single   cto   solution   运算   

原文地址:https://www.cnblogs.com/Trevo/p/12760250.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!