Leetcode: 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].

Note:

  1. The order of the result is not important. So in the above example, [5, 3] is also correct.
  2. Your algorithm should run in linear runtime complexity. Could you implement it using only constant space complexity?

分析:

两个相等的数异或结果为0。因此,首次扫描数组,得到两个单独的数a、b的异或结果axorb。因为a和b不相等,因此axorb一定不为0,且二进制位为1的位a和b一定不同。任取axorb中的一个不为0的二进制位,可以将原数组元素分成两组异或即得结果。


注:n & (-n)为n从低位向高位,第一个非0位所对应的数字


参考代码:

class Solution
{
public:
    vector<int> singleNumber(vector<int>& nums)
    {
    	size_t length = nums.size();
    
    	vector<int> results;
    	results.reserve(2);
    	if (0 == length) return results;
    
    	int axorb = 0;
    	for (size_t i = 0; i < length; i++)
    		axorb ^= nums[i];
    
    	int mask = axorb & (-axorb); // 取得axorb从低位向高位,第一个非0位所对应的数字
    	int a = 0;
    	int b = 0;
    	// axorb二进制位为1的位a和b一定不同,利用这个不为1的位将原数组元素分成两组异或即得结果
    	for (size_t i = 0; i < length; i++)
    	{
    		if (mask & nums[i]) a ^= nums[i];
    		else b ^= nums[i];
    	}
    	results.push_back(a);
    	results.push_back(b);
    	return results;
    }
};


评论
成就一亿技术人!
拼手气红包6.0元
还能输入1000个字符
 
红包 添加红包
表情包 插入表情
 条评论被折叠 查看
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值