Java for LeetCode 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?

解题思路:

按位异或运算,出现两次的都归零了,剩下的就是出现一次的了,JAVA实现如下:

    public int singleNumber(int[] nums) {
        for(int i=1;i<nums.length;i++)
        	nums[0]^=nums[i];
        return nums[0];
    }

 

posted @ 2015-06-03 12:10  TonyLuis  阅读(191)  评论(0编辑  收藏  举报