HDOJ1004

复制代码
#include <stdio.h>
#include <string.h>
#include <stdlib.h>

char ballons[1000][15];
int sum[1000];
int ballons_idx;
int n;

int InBallons(char* tmp)
{
int i;
for (i=0;i<ballons_idx;i++)
{
if (strcmp(tmp,ballons[i]) == 0)
{
sum[i]++;
return 1;
}
}
return 0;
}
int FindMax()
{
int i, max=-1, idx=0;
for (i=0;i<ballons_idx;i++)
{
if (sum[i]>max)
{
max = sum[i];
idx = i;
}
}
return idx;
}
void main()
{
int i;
char tmp[15];
scanf("%d",&n);

while(n)
{
ballons_idx = 0;
memset(sum,0,sizeof(int)*1000);
for (i=0;i<n;i++)
{
scanf("%s",tmp);
if (InBallons(tmp) == 0)
{
strcpy(ballons[ballons_idx++],tmp);
}
}
printf("%s\n",ballons[FindMax()]);
scanf("%d",&n);
}
}
复制代码

 

posted @   ZH奶酪  阅读(806)  评论(1编辑  收藏  举报
编辑推荐:
· 智能桌面机器人:用.NET IoT库控制舵机并多方法播放表情
· Linux glibc自带哈希表的用例及性能测试
· 深入理解 Mybatis 分库分表执行原理
· 如何打造一个高并发系统?
· .NET Core GC压缩(compact_phase)底层原理浅谈
阅读排行:
· 手把手教你在本地部署DeepSeek R1,搭建web-ui ,建议收藏!
· 新年开篇:在本地部署DeepSeek大模型实现联网增强的AI应用
· Janus Pro:DeepSeek 开源革新,多模态 AI 的未来
· 互联网不景气了那就玩玩嵌入式吧,用纯.NET开发并制作一个智能桌面机器人(三):用.NET IoT库
· 【非技术】说说2024年我都干了些啥
点击右上角即可分享
微信分享提示