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

LeetCode刷题之一:寻找只出现一次的数字

时间:2014-12-12 23:39:44      阅读:473      评论:0      收藏:0      [点我收藏+]

标签:algorithm   java算法   

投简历的时候看到了个刷题网站,http://www.nowcoder.com/527604,就做了一套题,现记录下来。

题目为:

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?

解题思路为:其他数字都出现两次,只有一个数字出现一次,思考要用什么方法才能让那些出现两次的数字经过某个操作能相互消除呢?那就是异或操作

代码为:

public class Solution {
    public int singleNumber(int[] A) {
        int result = 0;
        for(int number: A)
            result = result ^ number;
        return result;
    }
}


LeetCode刷题之一:寻找只出现一次的数字

标签:algorithm   java算法   

原文地址:http://blog.csdn.net/longshengguoji/article/details/41901781

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