博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
【LeetCode】137. Single Number II (3 solutions)
阅读量:5243 次
发布时间:2019-06-14

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

Single Number II

Given an array of integers, every element appears threetimes except for one. Find that single one.

Note:

Your algorithm should have a linear runtime complexity. Could you implement it without using extra memory?

 

解法一:开辟map记录次数

class Solution {public:    int singleNumber(vector
& nums) { map
m; int n = nums.size(); for(int i = 0; i < n; i ++) { if(m.find(nums[i]) == m.end()) m[nums[i]] = 1; else m[nums[i]] ++; } for(map
::iterator it = m.begin(); it != m.end(); it ++) { if(it->second != 3) return it->first; } }};

 

解法二:先排序,再遍历找出孤异元素

class Solution {public:    int singleNumber(vector
& nums) { int n = nums.size(); sort(nums.begin(), nums.end()); //note that at least 4 elements in nums if(nums[0] != nums[1]) return nums[0]; if(nums[n-1] != nums[n-2]) return nums[n-1]; for(int i = 1; i < n-1; i ++) { if(nums[i] != nums[i-1] && nums[i] != nums[i+1]) return nums[i]; } }};

 

解法三:位操作。不管非孤异元素重复多少次,这是通用做法。

对于右数第i位,如果孤异元素该位为0,则该位为1的元素总数为3的整数倍。

如果孤异元素该位为1,则该位为1的元素总数不为3的整数倍(也就是余1)。

换句话说,如果第i位为1的元素总数不为3的整数倍,则孤异数的第i位为1,否则为0.

(如果非孤异元素重复n次,则判断是否为n的整数倍)

class Solution {public:    int singleNumber(vector
& nums) { int ret = 0; int mask = 1; while(mask) { int countOne = 0; //number of digit 1 for(int i = 0; i < nums.size(); i ++) { if(nums[i] & mask) countOne ++; } if(countOne % 3 == 1) ret |= mask; mask <<= 1; } return ret; }};

转载于:https://www.cnblogs.com/ganganloveu/p/4110996.html

你可能感兴趣的文章
Ubuntu12.04 英文环境下使用ibus输入中文并自动启动输入法
查看>>
SpringMVC 拦截器HandlerInterceptor(一)
查看>>
(BFS)poj2935-Basic Wall Maze
查看>>
BZOJ3879: SvT
查看>>
GO语言学习——LiteIDE
查看>>
PHP+MySQL中字符集问题分析
查看>>
java的反射机制和javassist、asm
查看>>
imageNamed 、imageWithContentsOfFile、 initWithContentsFile区别
查看>>
【codeforces 749A】Bachgold Problem
查看>>
json_3层格式_数据源DataSet
查看>>
MD5密钥的加密,解密 生成密钥
查看>>
curl 查看一个web站点的响应时间
查看>>
DC综合简单总结(1)
查看>>
责任链模式
查看>>
chown 详解
查看>>
anysis中fluent 与 VS2015 编译 环境配置
查看>>
暴力破解算法,基本实现
查看>>
关于oceanbase中存储过程的设计与实现
查看>>
写给 Node.js 学徒的 7 个建议(转)
查看>>
HTML.9视频和音频
查看>>