【剑指offer40 数组中只出现一次的数字】
2021-05-13 09:29
标签:剑指offer size class 数字 title 描述 判断 vector int 【剑指offer40 数组中只出现一次的数字】 标签:剑指offer size class 数字 title 描述 判断 vector int 原文地址:https://www.cnblogs.com/Stephen-Jixing/p/13130321.html题目描述
class Solution {
public:
void FindNumsAppearOnce(vectorint> data,int* num1,int *num2) {
if(data.size()==2){
num1=(int*)data[0]; *num2=*num2^data[1];
return ;
}
vectorint> ans ;
for(int i = 0 ; i
文章标题:【剑指offer40 数组中只出现一次的数字】
文章链接:http://soscw.com/index.php/essay/85080.html