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

本文共 1005 字,大约阅读时间需要 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.

 

主要的问题是怎么把两个只有一个数的A和B分开。

如果全部异或的话得到的结果就是A^B。

A!=B,所以异或的结果中必然存在1,那么为1的那一位对应的A和B必然一个是1,一个是0,这个就可以将所有数字分为两类。

分别异或就能达到两个值了。

获取A,B最后不同的一位的方法是mask=AxorB & (~AxorB-1))。

1 class Solution { 2 public: 3     vector
singleNumber(vector
& nums) { 4 vector
result; 5 if(nums.size()<2) return result; 6 int AxorB = 0; 7 for(int i=0;i

 

转载于:https://www.cnblogs.com/Sean-le/p/4787551.html

你可能感兴趣的文章
ping命令
查看>>
关于z-index 属性和层级覆盖的相关学习
查看>>
安装MySQLdb时出错:EnvironmentError: mysql_config not found
查看>>
Linux df
查看>>
Python——getpass
查看>>
理解 Redis(5) - 哈希值
查看>>
【Node.js】Stream(流)的学习笔记
查看>>
Django 过滤器 、日期格式化、数学运算
查看>>
【总结整理】关于写前端页面小技巧
查看>>
java===java基础学习(6)---流程控制,for,if,switch,continue,break
查看>>
使用Node搭建reactSSR服务端渲染架构
查看>>
Android下VideoView的研究
查看>>
Maven中settings.xml的配置项说明
查看>>
文件缓存
查看>>
时间管理之“二”定律
查看>>
NYOJ71:独木舟上的旅行(简单贪心)
查看>>
新公司注册流程
查看>>
POJ - 1251 Jungle Roads(最小生成树)
查看>>
Fixflow引擎解析(五)(内核) - 基于Token驱动的引擎内核运转原理
查看>>
生成固定大小的占位图片
查看>>