lintcode落单的数

落单的数 

给出2*n + 1 个的数字,除其中一个数字之外其他每个数字均出现两次,找到这个数字。


样例

给出 [1,2,2,1,3,4,3],返回 4

挑战 
标签 

相关题目 

很简单的一道题,我这里用的方法使用set容器。还可以用异或的方法,因为,异或满足交换律,最终的异或结果将仅仅包含只出现一次的那个数。

class Solution {
public:
    /*
     * @param A: An integer array
     * @return: An integer
     */
    int singleNumber(vector &A) {
        // write your code here
        setm;
        for(int i=0;i

2017/9/16更新

这道题用异或的解法
class Solution {
public:
    /*
     * @param A: An integer array
     * @return: An integer
     */
    int singleNumber(vector &A) {
        // write your code here
        int num=0;
        for(auto n:A)
        {
            num^=n;
        }
        return num;
    }
};



落单的数 

Accepted

总耗时:  147 ms
100% 数据通过测试.


你可能感兴趣的:(C/C++算法,lintcode,算法)