首页 > 代码库 > LeetCode--Single Number II
LeetCode--Single Number II
思路:
统计每位出现的次数,mod3;对于k同样适用
1 class Solution { 2 public: 3 int singleNumber(int A[], int n) { 4 int a[32] = {0}; 5 int i = 0; 6 while(i < n) 7 { 8 int j = 0; 9 int num = A[i];10 while(j < 32)11 {12 a[j] += num&1;13 num = num>>1;14 ++j;15 }16 ++i;17 }18 i = 0;19 int ans = 0;20 while(i < 32)21 {22 if(a[i]%3 != 0)23 {24 ans = ans|(1<<i);25 }26 ++i;27 }28 return ans;29 }30 };
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。