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

[LeetCode]Single Number

时间:2014-05-15 07:20:39      阅读:264      评论:0      收藏:0      [点我收藏+]

标签:style   blog   class   code   c   color   

Given an array of integers, every element appears twice except for one. Find that single one.

因为只有一个数是一个,其余都为2个,故采用一直异或下去就可以求得结果

class Solution {
public:
    int singleNumber(int A[], int n) {
        for(int i = 0; i < n; i++)
        {
            if(n == 1)
            {
                return A[0];
            }
            if(i == 0)
            {
                i++;
            }
            A[0] ^= A[i];
        }
        return A[0];
        
    }
};


[LeetCode]Single Number,布布扣,bubuko.com

[LeetCode]Single Number

标签:style   blog   class   code   c   color   

原文地址:http://blog.csdn.net/jet_yingjia/article/details/25732699

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