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

数据结构实验:哈希表

时间:2014-06-30 15:07:41      阅读:145      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   color   数据   cti   

http://acm.sdut.edu.cn/sdutoj/problem.php?action=showproblem&problemid=1480

#include <stdio.h>
#include <string.h>
int n;
#define N 100001  //N的值取比哈希表长度略大的(质数)
int a[100001],b[100001];
int main()
{
    int i,j,ad,t;
    scanf("%d",&n);
    memset(a,0,sizeof(a));
    memset(b,0,sizeof(b));
    for(i=0;i<n;i++)
    {
      scanf("%d",&t);
      ad=t%N;
      if(ad<0) ad=ad+N;
      while(1)
      {
         if(a[ad]==0||a[ad]==t)
         {
            a[ad]=t;
            b[ad]++;
            break;
         }
         else
         {
            ad++;
            if(ad>=N) ad=0;
         }
      }
    }
      int max=b[0];
      t=0;
      for(i=1;i<N;i++)
      {
          if(max<b[i]||(max==b[i]&&a[t]>a[i]))
          {
            max=b[i];
            t=i;
          }
      }
      printf("%d %d\n",a[t],max);



    return 0;
}
 

 

数据结构实验:哈希表,布布扣,bubuko.com

数据结构实验:哈希表

标签:style   blog   http   color   数据   cti   

原文地址:http://www.cnblogs.com/zhangmingcheng/p/3816227.html

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