码迷,mamicode.com
首页 > 编程语言 > 详细

Java for LeetCode 136 Single Number

时间:2015-06-03 13:27:52      阅读:139      评论:0      收藏:0      [点我收藏+]

标签:

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];
    }

 

Java for LeetCode 136 Single Number

标签:

原文地址:http://www.cnblogs.com/tonyluis/p/4548790.html

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