数组中只出现一次的数字
Posted 修修55
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了数组中只出现一次的数字相关的知识,希望对你有一定的参考价值。
题目描述
一个整型数组里除了两个数字之外,其他的数字都出现了两次。请写程序找出这两个只出现一次的数字。
class Solution { public: void FindNumsAppearOnce(vector<int> data,int* num1,int *num2) { if(data.size() == 0) return ; int res = 0; for(int i = 0;i < data.size();i++){ res ^= data[i]; } unsigned int index1 = FindFirstBitIs1(res); *num1 = *num2 = 0; for(int j = 0;j < data.size();++j){ if(isBit1(data[j],index1)) *num1 ^= data[j]; else *num2 ^= data[j]; } } unsigned int FindFirstBitIs1(int num){ int indexBit = 0; while(((num & 1) == 0) && (indexBit < 8*sizeof(int))){ num = num >> 1; ++indexBit; } return indexBit; } bool isBit1(int num,unsigned int indexBit){ num = num >> indexBit; return (num & 1); } };
以上是关于数组中只出现一次的数字的主要内容,如果未能解决你的问题,请参考以下文章