标签:for 二进制 时间 元素 线性时间 额外 进制 异或 stat
给定一个非空整数数组,除了某个元素只出现一次以外,其余每个元素均出现两次。找出那个只出现了一次的元素。
你的算法应该具有线性时间复杂度。 你可以不使用额外空间来实现吗?
输入: [2,2,1]
输出: 1
输入: [4,1,2,1,2]
输出: 4
异或是将数字转换成二进制来比较,相同则为0,不同则为1
1、a ^ b ^ a = b
2、a ^ b ^ b = a
3、a ^ a = 0
4、a ^ 0 = a
public class N136 {
public static void main(String[] args) {
int[] nums = {4,1,2,1,2};
System.out.println(singleNumber(nums));
}
public static int singleNumber(int[] nums) {
int result = 0;
for(int i : nums){
result = result ^ i;
}
return result;
}
}
标签:for 二进制 时间 元素 线性时间 额外 进制 异或 stat
原文地址:https://www.cnblogs.com/lmj612/p/12887809.html