找出不重复数字
Posted wx5add7776993de
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了找出不重复数字相关的知识,希望对你有一定的参考价值。
给定一个非空整数数组,除了某个元素只出现一次以外,其余每个元素均出现两次。找出那个只出现了一次的元素。
说明:
你的算法应该具有线性时间复杂度。 你可以不使用额外空间来实现吗?
示例 1:
输入: [2,2,1]
示例 2:
输入: [4,1,2,1,2]
第一种方法:使用异或运算
class Solution
public int singleNumber(int[] nums)
int result = 0;
//异或
//相同的数异或 ---> 1^1 = 1 得到0
//与0相异或 -----> 0^1 = 1 得到本身
for(int i : nums)
result ^= i;
return result;
第二种方法:使用散列表
public int singleNumber(int[] nums)
Map<Integer,Integer> map = new HashMap<>();
for(int i : nums)
Integer count = map.get(i);
count = count == null ? 1:++count;
map.put(i,count);
int result = 0;
for(Integer i : map.keySet())
if(map.get(i) == 1)
result = i;
return result;
以上是关于找出不重复数字的主要内容,如果未能解决你的问题,请参考以下文章