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

Single Number II

时间:2015-04-03 09:07:43      阅读:121      评论:0      收藏:0      [点我收藏+]

标签:

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

/**
     * 将整数所有位相加对3取余,剩下的就是只出现一次的数
     * @param A
     * @return
     */
    public int singleNumber(int[] A) {
        int sum[] = new int[32];                    //保存整数32位,A中所有数每一位相加的和
        int res = 0;                                //出现一次的数
        for(int i = 0; i < 32; i++){
            for(int j = 0; j < A.length; j++){
                sum[i] += ((A[j] >>> i) & 1);
            }//for
            sum[i] %= 3;
            res += (sum[i] << i);
        }//for
        
        return res;
    }

 

Single Number II

标签:

原文地址:http://www.cnblogs.com/luckygxf/p/4389022.html

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