LeetCode题解:Single Number I and II

Single Number

Given an array of integers, every element appears twice except for one. Find that single one.

Note:
Your algorithm should have a linear runtime complexity. Could you implement it without using extra memory?

Single Number II

Given an array of integers, every element appears three times except for one. Find that single one.

Note:
Your algorithm should have a linear runtime complexity. Could you implement it without using extra memory?

思路:

其实是一个小技巧。一个整数和它本身异或之后得到值是0。所以初始化一个值为0的变量,让数组中的所有数与之异或,然后就可以找到这个只出现一次的数。

题目可以扩展到寻找唯一的一个只出现奇数次的数。一样的方法。

对于第二个问题,因为只能用O(1)的空间,所以技巧是对每一个位的1的个数进行计数。这样唯一的只出现一次的数用到的位将导致计数不是3的倍数。最后检查所有计数不是3倍数的位,即可恢复原来的数字。

题解:

class Solution {
public:
    int singleNumber(int A[], int n) {
        // Note: The Solution object is instantiated only once and is reused by each test case.
        int retval = 0;
        for_each(A, A+n, [&retval](int val){retval ^= val;});
        return retval;
    }
};


class Solution {
public:
    int singleNumber(int A[], int n) {
        const size_t INTLEN = sizeof(int) * 8;
        int bitCount[INTLEN];
        fill(bitCount, bitCount + INTLEN, 0);
        
        for(int i = 0; i < n; ++i)
            for(size_t j = 0; j < INTLEN; ++j)
                bitCount[j] += ((A[i] & (1 << j)) != 0);
        
        int single = 0;
        for(size_t j = 0; j < INTLEN; ++j)
            if ((bitCount[j] % 3) == 1)
                single += (1 << j);
        
        return single;
    }
};

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 3
    评论
评论 3
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值