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

LeetCode OJ-- Single Number II **@

时间:2014-10-13 14:22:09      阅读:199      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   io   for   sp   div   on   log   

有一列数,其中有1个数出现了1次,其它数都出现了3次,求这个数。

class Solution {
public:
    int singleNumber(int A[], int n) {
        if(n <= 0 )
            return 0;

        int ans = 0;

        for(int i = 0; i < 32; i++)
        {
            int q = 0;
            for(int j = 0; j < n; j++)
            {
                int p = A[j] >> i & 1;
                q = (q + p ) % 3;
            }
            ans = ans | q <<i;
        }
        return ans;
    }
};

 

LeetCode OJ-- Single Number II **@

标签:style   blog   color   io   for   sp   div   on   log   

原文地址:http://www.cnblogs.com/qingcheng/p/4021749.html

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