博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
【菜鸟做水题】: 杭电1004
阅读量:5105 次
发布时间:2019-06-13

本文共 660 字,大约阅读时间需要 2 分钟。

#include"stdio.h"#include "string.h"typedef struct{char str[16];int count;}COLOR;COLOR color[1001];int main(){int n = 0;char str_in[16] = "";while(scanf("%d", &n) != EOF){//getchar();if(n == 0)break;int index = 0;for(int i = 0; i < n; i++){bool flag = false;scanf("%s", str_in);for(int j = 0; j < index; j++)if(strcmp(str_in, color[j].str) == 0){color[j].count++;flag = true;}if(flag == false){strcpy(color[index].str, str_in);color[index++].count = 1;}}int max = 0;for( int i = 0; i < index; i++)if(color[i].count > color[max].count)max = i;printf("%s\n", color[max].str);}return 0 ;}

  

转载于:https://www.cnblogs.com/VortexPiggy/archive/2012/07/10/2585084.html

你可能感兴趣的文章
jvm参数
查看>>
我对前端MVC的理解
查看>>
Silverlight实用窍门系列:19.Silverlight调用webservice上传多个文件【附带源码实例】...
查看>>
2016.3.31考试心得
查看>>
mmap和MappedByteBuffer
查看>>
Linux的基本操作
查看>>
转-求解最大连续子数组的算法
查看>>
对数器的使用
查看>>
OracleOraDb11g_home1TNSListener服务启动后停止,某些服务在未由其他服务或程序使用时将自己主动停止...
查看>>
Redis用户添加、分页、登录、注册、加关注案例
查看>>
练习2
查看>>
【ASP.NET】演绎GridView基本操作事件
查看>>
ubuntu无法解析主机错误与解决的方法
查看>>
尚学堂Java面试题整理
查看>>
MySQL表的四种分区类型
查看>>
[BZOJ 3489] A simple rmq problem 【可持久化树套树】
查看>>
STM32单片机使用注意事项
查看>>
swing入门教程
查看>>
好莱坞十大导演排名及其代表作,你看过多少?
查看>>
Loj #139
查看>>