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

【leetcode】Single Number II

时间:2014-08-22 16:00:48      阅读:146      评论:0      收藏:0      [点我收藏+]

标签:blog   for   ar   2014   art   div   amp   log   on   

   int singleNumber(int A[], int n) {
        int once = 0;
	int twice = 0;
	int three = 0;
	for (int i = 0; i < n; ++i)
	{
		//在计算新的once 前,计算twice
		twice |= once & A[i];
		//计算新的once
		once ^= A[i];
		three = ~(once & twice);
		//将3次的1都清理掉
		once &=  three;
        twice &= three;
	}
	return once;
    }

【leetcode】Single Number II

标签:blog   for   ar   2014   art   div   amp   log   on   

原文地址:http://www.cnblogs.com/hrhguanli/p/3929423.html

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