博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
[LeetCode] Single Number III
阅读量:6844 次
发布时间:2019-06-26

本文共 960 字,大约阅读时间需要 3 分钟。

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?

Credits:

Special thanks to  for adding this problem and creating all test cases.

解题思路:

题意为给定一个整数数组。当中有两个数仅仅出现一次。其余数出现两次。

要求线性时间、常量空间找出这两个数。

我们知道。两个相等的数异或结果为0。因此。首次扫描数组,得到两个单独的数A、B的异或结果AxorB。由于A和B不相等。因此AxorB一定不为0,且二进制位为1的位A和B一定不同。任取AxorB中的一个二进制位。能够将原数组元素分成两组异或即得结果。

注意n&(~(n-1))表示取的n中的最后一位二进制位。

另外,&的优先级小于==的优先级。

class Solution {public:    vector
singleNumber(vector
& nums) { int len = nums.size(); int AxorB = 0; for(int i=0; i
({A, B}); }};

转载地址:http://nrbul.baihongyu.com/

你可能感兴趣的文章
Android中使用抖动动画吸引来用户注意
查看>>
Java NIO基础剖析
查看>>
Debian6 下NFS 安装
查看>>
chmod命令
查看>>
编译安装LAMP
查看>>
南怀瑾谈睡眠养生:如何才能少睡不困?
查看>>
Linux下面搭建***服务器(pptp)
查看>>
Spring IOC笔记
查看>>
如何解决 homebrew 更新慢的问题
查看>>
磁盘配额满与用户权限的更改
查看>>
ORACLE 数据类型
查看>>
KeyMob移动广告聚合平台为开发者提供最全面的保障
查看>>
钱sir 高数:一元函数积分学
查看>>
修改Windows server 2008远程桌面连接数量
查看>>
Excel文件导入异常-输入流无法识别
查看>>
我的友情链接
查看>>
CentOS6.4下YUM安装MySQL和JDK和Tomcat
查看>>
LVS解析及NAT、DR模型配置详解
查看>>
上期ctp期货API android 客户端
查看>>
puppet实战(一):文件同步+更改文件属性
查看>>