首页 > 其他 > 详细

leetcode--Single Number II

时间:2014-02-26 19:26:02      阅读:436      评论:0      收藏:0      [点我收藏+]

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?

 

Have you been asked this question in an interview? 

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
/**We can use the bit operation to do this problem
*If you have a problem to understand the bit operation,
*then you can think | , & , ^, ~ as the set operation union, intersection and symmetric difference and set complement respectively.
*/
 
public class Solution {
    public int singleNumber(int[] A) {
        int once = 0;
        int twice = 0;
        int triple = 0;
        for(int i = 0 ; i < A.length ; i++){
            //update twice when A[i] is added. if A[i] is in once, then added it to twice,
            //otherwise, twice is not needed to updated    
            twice |= A[i] & once;
           //update once
            once = A[i] ^ once;
           //triple is exactly the intersection of once and twice
            triple = once&twice;
           //update once and twice again(remove all integer in triple)
            once ^= triple;
            twice ^= triple;
        }
        //return the integer in once or twice
        return once | twice;
    }
}       

  

 

leetcode--Single Number II

原文:http://www.cnblogs.com/averillzheng/p/3568218.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!