136. Single Number leetcode做题报告
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了136. Single Number leetcode做题报告相关的知识,希望对你有一定的参考价值。
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) {
for(int i=1;i<nums.size();i++){
nums[0]^=nums[i];
}
return nums[0];
}
};
要求O(n)并且不用额外的变量。 非常巧妙的技巧。相同数取异或为0,所0和所有数的异或为本身,所以最后剩下的就是Single Number。
以上是关于136. Single Number leetcode做题报告的主要内容,如果未能解决你的问题,请参考以下文章