前往小程序,Get更优阅读体验!
立即前往
首页
学习
活动
专区
工具
TVP
发布
社区首页 >专栏 >Leetcode: Single Number III

Leetcode: Single Number III

作者头像
卡尔曼和玻尔兹曼谁曼
发布2019-01-22 11:07:30
4390
发布2019-01-22 11:07:30
举报

题目:

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位所对应的数字

参考代码:

代码语言:javascript
复制
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;
    }
};
本文参与 腾讯云自媒体分享计划,分享自作者个人站点/博客。
原始发表:2015年10月17日,如有侵权请联系 cloudcommunity@tencent.com 删除

本文分享自 作者个人站点/博客 前往查看

如有侵权,请联系 cloudcommunity@tencent.com 删除。

本文参与 腾讯云自媒体分享计划  ,欢迎热爱写作的你一起参与!

评论
登录后参与评论
0 条评论
热度
最新
推荐阅读
领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档