Single Number II(LintCode)

Single Number II

Given 3*n + 1 numbers, every numbers occurs triple times except one, find it.ide

Example

Given [1,1,2,3,3,3,2,2,4,1] return 4spa

Challenge

One-pass, constant extra space.code

 

統計每一位上的1出現的次數,而後模3 , 題目上的3 * n + 1給了提示,而後又作過一題2 * n + 1的位操做。blog

 1 public class Solution {
 2     /**
 3      * @param A : An integer array
 4      * @return : An integer 
 5      */
 6     public int singleNumberII(int[] A) {
 7         int[] bit = new int[32];
 8         
 9         for(int a :A) {
10             for(int i = 0;i<32;i++) {
11                 if(((1 << i) & a) != 0) {
12                     bit[i] = (bit[i] + 1) % 3;
13                 }
14             }
15         }
16         int res = 0;
17         for(int i=31;i>=0;i--) {
18             res = res * 2 + bit[i];
19         }
20         return res;
21     }
22 }
View Code
相關文章
相關標籤/搜索