首页 > 代码库 > [LeetCode] Single Number
[LeetCode] 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?
给定一个数组,其中只有一个数字出现了1次,其他的数字都出现了2次。求出这个出现一次的数字。这道题利用XOR进行求解,如果两个数字相同,那么它们的XOR为0,然而0与任何数XOR都是任何数。所以用0与数组中各个数XOR,最后的结果就是那个只出现一次的数字。
class Solution { public: int singleNumber(vector<int>& nums) { int res = 0; for (int num : nums) res ^= num; return res; } }; // 13 ms
[LeetCode] Single Number
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。