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

【剑指offer】Q40:数组中出现一次的数字

时间:2014-07-03 13:50:52      阅读:181      评论:0      收藏:0      [点我收藏+]

标签:面试题   algorithm   

按着书里面讲述的方法,根据某一位来将整个数组拆分成两个部分,取每一部分中出现一次的数。书中的处理略显复杂,这里简化下分类的方法。

def once(array):
	
	reOR = 0
	for x in array:
		reOR ^= x
		
	bit1 = firstBit1(reOR)
	first = 0
	second = 0
	for x in array:
		if x & bit1 != 0:
			first ^= x
		else:
			second ^= x
	return first, second

def firstBit1(x):
	n = 1
	while True:
		if x & n != 0:
			return n
		else:
			n <<= 1


【剑指offer】Q40:数组中出现一次的数字,布布扣,bubuko.com

【剑指offer】Q40:数组中出现一次的数字

标签:面试题   algorithm   

原文地址:http://blog.csdn.net/shiquxinkong/article/details/36512925

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