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

hash

时间:2015-06-21 10:43:08      阅读:118      评论:0      收藏:0      [点我收藏+]

标签:

#include<stdio.h>
int  a[100000];

int Hashf(int x){
    return x + 1;
}
int main()
{
    int n;
    scanf("%d",&n);
    while(n--){
        int x;
        scanf("%d",&x);
        int y = Hashf(x);
        a[y]=1;
    }
    for(int i=0;i<=100000;i++)
        if(a[i]==1) printf("%d\n",i-1);
    return 0;
}

hash

标签:

原文地址:http://blog.csdn.net/a197p/article/details/46580473

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