问题描写叙述: Given an array of integers, every element appears twice except for one. Find that single one. Note: Your algorithm should have a linear runtime complexity. Could you implement it without using extra memory? 解题思路:本题能够用位运算来求解.由于a^0=a,a^a=0,a^b=…