码迷,mamicode.com
首页 > 其他好文 > 详细

Single Number II

时间:2014-07-14 10:01:38      阅读:168      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   strong   for   io   

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?

 

 

现在的解法是比较普通的。因为题目已经说了,除了一个数字以外,其他的都出现了3次,如果我们把那个特殊的数剔除,并把剩下的数于每一位来加和的话,每一位上1出现的次数必然都是3的倍数。所以,解法就在这里,将每一位数字分解到32个bit上,统计每一个bit上1出现的次数。最后对于每一个bit上1出现的个数对3取模,剩下的就是结果。

 

 1 class Solution {
 2 public:
 3     int singleNumber(int A[], int n) {
 4         int result=0;
 5         for(int i=0;i<32;i++)
 6         {
 7             int count=0;
 8             for(int j=0;j<n;j++)
 9             {
10                 count+=((A[j]>>i)&1);
11             }
12             result|=((count%3)<<i);
13         }
14         return result;
15     }
16 };

 

Single Number II,布布扣,bubuko.com

Single Number II

标签:style   blog   color   strong   for   io   

原文地址:http://www.cnblogs.com/hicandyman/p/3837610.html

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