只出现一次的数字 leetcode 刷题篇
作者:互联网
给定一个非空整数数组,除了某个元素只出现一次以外,其余每个元素均出现两次。找出那个只出现了一次的元素。
说明:
你的算法应该具有线性时间复杂度。 你可以不使用额外空间来实现吗?
int singleNumber(int* nums, int numsSize){
int n = 0;
while(numsSize--){
n^=nums[numsSize];
}
return n;
}
标签:numsSize,一次,数字,nums,int,元素,出现,leetcode,刷题 来源: https://blog.csdn.net/weixin_51666505/article/details/123613067