题解 2069: [STL训练]Let the Balloon Rise

来看看其他人写的题解吧!要先自己动手做才会有提高哦! 
返回题目 | 我来写题解

筛选

Let the Balloon Rise_python

摘要:解题思路:1.while循环判断n的值是否为0 2.for循环输入颜色的值,将其存入列表中 3.用count()函数计数,并且将列表值和计数值放进字典中 4.对字典进行排序,按照要求找到需要的出现最多……

map哈希存储

摘要:参考代码:#include<bits/stdc++.h> using namespace std; int main() { int n; while(cin>>n) { if……

使用STL unordered_map实现

摘要:解题思路:使用unordered_map统计每种颜色气球出现的次数,输出出现次数最多的气球颜色。注意事项:参考代码:#include<iostream> #include<string> #inc……

Let the Balloon Rise (Java代码)

摘要://坑  最流行的气球颜色可能有多种, 输出最后出现的那个。 //例如:  4 red  green green red   结果为red     //     green  red    gre……

[STL训练]Let the Balloon Rise-题解 (map+find)

摘要:题解: ``` 使用map中的find函数,存在相同则值加1,不存在则赋值为1;之后用循环找到value最大的指针,然后用指针输出key。 ``` ``` #include using n……

[STL训练]Let the Balloon Rise C语言 AC代码

摘要:解题思路:我的想法是用二维数组,但是不会接收,所以我去百度了下,原来定义a[100][15]  scanf("%s",&a[i]);便可,好像字符串不用&都可以,写成scanf("%s",a[i]);……

[STL训练]Let the Balloon Rise

摘要:文章采用的较多的容器,并未使用sort算法。 ```cpp #include #include #include #include #include #include #include……