Given an integer array nums where every element appears three times except for one, which appears exactly once. Find the single element and return it.
题意
给定一个非空整数数组,除了某个元素只出现一次以外,其余每个元素均出现了三次。找出那个只出现了一次的元素。说明:你的算法应该具有线性时间复杂度。你可以不使用额外空间来实现吗?样例
示例 1:
输入: [2,2,3,2]
输出: 3
示例 2:
输入: [0,1,0,1,0,1,99]
输出: 99
解题
由于所有数都是整数,所以最大位数为32位,对于出现三次的数,统计每一位上1出现的次数一定能被3整除,而不能被三整除的位一定是单独出现的数造成的,所以依次统计每一位的次数,并把不能被3整除的位数设为1赋给结果。C++代码如下,非常简单 。class Solution {
public:
int singleNumber(vector<int>& nums) {int res = 0;
for(int i = 0; i < 32; i++){
int sum = 0;
for(int num: nums)
if((num >> i) & 1)
sum++;
if(sum % 3)
res |= 1 << i;
}
return res;
}
};