求数组中只出现一次的数---异或操作
1.数组中除了一个数外,其余数都出现两次,求只出现一次的数2.数组中除了两个数外,其余数都出现两次,求只出现一次的数/*找出数组中只出现一次的数*///考察异或操作#include <iostream>#include <cstdio>using namespace std;//只有一个int getSigle(int array[], int len){ int ret = 0; for (int i = 0; i < l