【Leetcode】:Single Number问题 in java

35 篇文章 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?

题目要求不要使用额外的空间,找不到什么好的思路,只有用ArrayList来实现。

大概思路就是,遍历数组的元素,如果list中没有该元素,那么添加到list中,如果存在,就移除该元素,那么到最后list中一定只有一个元素这就是答案。


public class Solution {
    public int singleNumber(int[] nums) {
		int len = nums.length;		
		ArrayList<Integer> dict = new ArrayList<Integer>();
		for (int i = 0; i < len; i++) {			
			if (dict.contains(nums[i])) {				
				dict.remove(new Integer(nums[i]));				
			} else {
				dict.add(nums[i]);				
			}
		}
		return dict.get(0);
	}
}

提交上去性能不怎么好看,百度了下标准答案是用异或运算实现。

这个想法让我脑洞大开啊,对于异或而言,如果两个值不同那么结果为1,否则为0,举个例子:

1010 ^ 1010 = 0000

1011 ^ 1010 = 0001

根据题目除了一个数,其他数都是成对出现的,那么只要出现一对,他们异或的结果就是全0,就好像消消乐一样


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


另外在网上找到了另外一段代码,和我的思路一样,不过写法太优美了,赶紧收藏下来

public int singleNumber(int[] A) {
	HashSet<Integer> set = new HashSet<Integer>();
	for (int n : A) {
		if (!set.add(n))
			set.remove(n);
	}
	Iterator<Integer> it = set.iterator();
	return it.next();
}
引用自http://www.programcreek.com/2012/12/leetcode-solution-of-single-number-in-java/


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值