码迷,mamicode.com
首页 > 其他好文 > 详细

136. Single Number

时间:2019-10-31 22:00:15      阅读:117      评论:0      收藏:0      [点我收藏+]

标签:ice   complex   cep   size   run   异或操作   appear   algorithm   exce   

题目描述:

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?

思路:

利用了异或操作的性质:

1,两个相同的数异或的结果为0
2,一个数和0异或的结果为这个数

代码:

 1 class Solution {
 2 public:
 3     int singleNumber(int A[], int n) {
 4 
 5         int result = 0;
 6         for(int i = 0;i < n;i++)
 7         {
 8             result ^= A[i];
 9         }
10         return result;
11         
12     }
13 };

 

136. Single Number

标签:ice   complex   cep   size   run   异或操作   appear   algorithm   exce   

原文地址:https://www.cnblogs.com/zjuhaohaoxuexi/p/11773834.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!