一个序列,除了一个数出现两次,其他数都出现一次,找出来重复的这个数-位运算应用(异或运算)

Posted Persistent.

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了一个序列,除了一个数出现两次,其他数都出现一次,找出来重复的这个数-位运算应用(异或运算)相关的知识,希望对你有一定的参考价值。

一个序列,除了一个数出现两次,其他数都出现一次,找出来重复的这个数-位运算应用

面试的题目

贴一下代码:

 1 //位运算应用
 2 #include<bits/stdc++.h>
 3 using namespace std;
 4 typedef long long ll;
 5 const int maxn=1e5+10;
 6 
 7 int n;
 8 int a[maxn];
 9 
10 void found(){
11     int xors=0;
12     for(int i=0;i<n;i++){
13         xors^= a[i];
14     }
15     for(int i=0;i<n;i++){
16         xors^=i;
17     }
18     printf("xors= %d\n",xors);
19 }
20 
21 int main()
22 {
23     scanf("%d",&n);
24     for(int i=0;i<=n;i++)
25         cin>>a[i];
26     found();
27     return 0;
28 }
29 /*
30 5
31 1 2 3 4 5 5
32 5
33 */

 

以上是关于一个序列,除了一个数出现两次,其他数都出现一次,找出来重复的这个数-位运算应用(异或运算)的主要内容,如果未能解决你的问题,请参考以下文章

数组中只出现一次的数字

40 数组中只出现一次的数字

寻找单独出现的数——通用技巧

CF-Educational Codeforces Round 83-D-Count the Arrays

浅谈异或运算^的作用

找出2*n+1个数中,只出现了一次的数,其他的数字都出现了两次