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

Single Number

时间:2016-01-25 21:23:34      阅读:189      评论:0      收藏:0      [点我收藏+]

标签:

?

package cn.edu.xidian.sselab.hashtable;

/**
 *
 * @author zhiyong wang
 * title: Single Number
 * content:
 * 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 SingleNumber {

    //利用异或操作,相同为0,相异为1,这样一次循环就能找到不同的那个数
    public int singleNumber(int[] nums){
        int length = nums.length;
        int result = 0;
        for(int i=0;i<length;i++){
            result = result ^ nums[i];
        }
        return result;
    }
    
    public static void main(String[] args) {
        SingleNumber single = new SingleNumber();
        System.out.println(single.singleNumber(new int[]{1,2,1}));;
    }
}

Single Number

标签:

原文地址:http://www.cnblogs.com/wzyxidian/p/5158690.html

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