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

136. Single Number

时间:2018-05-21 12:29:27      阅读:123      评论:0      收藏:0      [点我收藏+]

标签:col   return   stat   turn   style   single   lse   als   code   

 1 static int wing=[]()
 2 {
 3     std::ios::sync_with_stdio(false);
 4     cin.tie(NULL);
 5     return 0;
 6 }();
 7 
 8 class Solution 
 9 {
10 public:
11     int singleNumber(vector<int>& nums) 
12     {
13         int res=0;
14         for(int i:nums)
15             res^=i;
16         return res;
17     }
18 };

核心思想是位操作的异或。0^N=N    N^N=0

找出单身汉,用0去勾搭。成对的勾搭完了还是0,单身汉勾搭完了就是单身那个。

136. Single Number

标签:col   return   stat   turn   style   single   lse   als   code   

原文地址:https://www.cnblogs.com/zhuangbijingdeboke/p/9066103.html

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