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

Leetcode[136]-Single Number

时间:2015-06-10 08:59:53      阅读:114      评论:0      收藏:0      [点我收藏+]

标签:linear   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?


比较简单,直接上代码:
Code(c++)

class Solution {
public:
    int singleNumber(vector<int>& nums) {
        int n = nums.size();

        sort(nums.begin(),nums.end());
        if(n==1) return nums[0];
        int i = 0;
        while(i<n) {
            if(nums[i] == nums[i+1])
                i = i+2;
            else
                return nums[i];
        }
        return 0;
    }
};

Leetcode[136]-Single Number

标签:linear   single   number   leetcode   

原文地址:http://blog.csdn.net/dream_angel_z/article/details/46432171

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