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

【HDOJ】find your present (2)(思路题)

时间:2018-05-22 15:00:09      阅读:145      评论:0      收藏:0      [点我收藏+]

标签:print   ref   second   div   stdio.h   i++   for   main   span   

find your present (2)

题意:找有唯一一个出现奇数次的数

思路:利用位异或。一个数异或自己本身是0;

#include<stdio.h>
int main()
{
    int n,i,x,y;
    while(scanf("%d",&n)!=EOF&&n)
    {
           x=0;
           while(n--)
           {
                scanf("%d",&y);
                x^=y;
           }
           printf("%d\n",x);
    }
    return 0;
}

 

 

map

#include <stdio.h>  
#include <algorithm>  
#include <map>  
using namespace std;  
  
int main()  
{  
    int n,i,a;  
    map<int,int>my;  
    map<int,int>::iterator it;  
    while(scanf("%d",&n),n)  
    {  
        for(i=0;i<n;i++)   
        {  
            scanf("%d",&a);  
            my[a]++;  
        }  
        for(it=my.begin();it!=my.end();it++)  
        {  
            if(it->second==1)  
            {  
                printf("%d\n",it->first);  
                break;  
            }  
        }  
        my.clear();  
    }  
    return 0;  
}  

 

【HDOJ】find your present (2)(思路题)

标签:print   ref   second   div   stdio.h   i++   for   main   span   

原文地址:https://www.cnblogs.com/Kohinur/p/9071459.html

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