码迷,mamicode.com
首页 > 其他好文 > 详细

Leetcode-136 Single Number

时间:2016-11-27 22:29:09      阅读:223      评论:0      收藏:0      [点我收藏+]

标签:could   app   for   tor   strong   lin   cep   out   code   

#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?

题解:既然要求线性时间复杂度求解这题,空间复杂度为O(1).就不能暴力轮询啦。

然后就想起数电里面,XOR异或,相同的数异或是零。老实说,为啥我看到single想到了单身狗,两个配对的数一异或就归零哈哈。

然后就剩下了单身狗数。

class Solution {
public:
    int singleNumber(vector<int>& nums) {
        int single=0;
        for(int i=0;i<nums.size();i++)
        {
            single=single^nums[i];
        }
        return single;
    }
};

 

      

Leetcode-136 Single Number

标签:could   app   for   tor   strong   lin   cep   out   code   

原文地址:http://www.cnblogs.com/fengxw/p/6107000.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!