poj 2418 Hardwood Species
摘要:
// 题意:给出不同的树,求每种树所占的比例,并要求树名按字典序由小到大输出#include <iostream> //map#include <string>#include <map>using namespace std;int main(){ map<string,int> col; char str[100]; double tot=0; while(gets(str)) { col[str]++; tot++; } for(map<string,int>::iterator ite=col.begi... 阅读全文
posted @ 2012-03-28 17:30 sysu_mjc 阅读(323) 评论(0) 推荐(0) 编辑