您的位置:首页 > 其它

Single Number III

2015-09-13 16:36 344 查看
Given an array of numbers nums, in which exactly two elements appear only once and all the other elements appear exactly twice. Find the two elements that appear only once.

For example:

Given nums = [1, 2, 1, 3, 2, 5], return [3, 5].

Note:

The order of the result is not important. So in the above example, [5, 3] is also correct.

Your algorithm should run in linear runtime complexity. Could you implement it using only constant space complexity?

int* singleNumber(int* nums, int numsSize, int* returnSize) {

int temp = 0;
for (int i = 0; i < numsSize; i++)
{
temp ^= nums[i];
}

int count = 0;
while ((temp & 0x01) != 1)
{
count++;
temp = temp >> 1;
}

*returnSize = 2;
int* resNums = (int*)malloc(sizeof(int)*(*returnSize));
resNums[0] = 0;
resNums[1] = 0;

for (int i = 0; i < numsSize; i++)
{
if ((nums[i]>>count) & 0x01)
{
resNums[0] ^= nums[i];
}
else
{
resNums[1] ^= nums[i];
}
}

return resNums;


}
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: