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/