题目 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? 分析 给定一个序列 找出只出现一次的元素,其它元素均出现2次: 要求线性时间,不…