首页 > 代码库 > 位运算取第一个非0的位 r & (~(r-1))
位运算取第一个非0的位 r & (~(r-1))
Single Number III
Given an array of numbers nums
, in which exactly two elements appear only once and all the other elements appear exactly twice. Find the two elements that appear only once.
For example:
Given nums = [1, 2, 1, 3, 2, 5]
, return [3, 5]
.
class Solution(object): def singleNumber(self, nums): """ :type nums: List[int] :rtype: List[int][1,1,2]=>1 xor 1 xor 2=2[1, 2, 1, 3, 2, 5]=> all xor= 3 & 5 != 0 => 0x11 xor 0x101=bit 2,3 is not equal=>find bit2 and seperate like [1,1,2] """ r = 0 for num in nums: r = r ^ num assert r != 0 n = r & (~(r-1)) ans1, ans2 = 0, 0 for num in nums: if num & n == 0: ans1 = ans1 ^ num else: ans2 = ans2 ^ num return ans1, ans2
位运算取第一个非0的位 r & (~(r-1))
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。