首页 > 代码库 > 【LeetCode】136. Single Number 解题小结
【LeetCode】136. Single Number 解题小结
题目:
Given an array of integers, every element appears twice except for one. Find that single one.
Note:
Your algorithm should have a linear runtime complexity. Could you implement it without using extra memory?
这题目的要求不仅是要求是线性时间,希望也不会使用额外的内存,那么也就是你无法运用其他的数据结构。也是参考了其他人的答案。对于位操作的特性还有待进一步挖掘。
class Solution {public: int singleNumber(vector<int>& nums) { int num = 0; for (int i = 0; i < nums.size(); ++i){ num ^= nums[i]; } return num; }};
【LeetCode】136. Single Number 解题小结
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。