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

pat(A)1041. Be Unique(哈希)

时间:2017-07-25 22:39:29      阅读:202      评论:0      收藏:0      [点我收藏+]

标签:print   include   content   ems   uniq   cstring   test   std   string   

1.链接:点击打开链接

2.代码:

#include<cstdio>
#include<iostream>
#include<cstring>
using namespace std;

int a[100005];
int Hash[100000];

int main()
{
    int n;
    while(scanf("%d",&n)==1)
    {
        memset(Hash,0,sizeof(Hash));
        for(int i=0; i<n; i++)
        {
            scanf("%d",&a[i]);
            Hash[a[i]]++;
        }
        int flag=-1;
        for(int i=0; i<n; i++)
        {
            if(Hash[a[i]]==1)
            {
                flag=i;
                break;
            }

        }
        if(flag==-1)
            printf("None\n");
        else
            printf("%d\n",a[flag]);
    }
    return 0;
}

pat(A)1041. Be Unique(哈希)

标签:print   include   content   ems   uniq   cstring   test   std   string   

原文地址:http://www.cnblogs.com/liguangsunls/p/7236425.html

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