题解 | #最长&最短文本#

最长&最短文本

https://www.nowcoder.com/practice/3331d16fe07d4358858178ff5fa73e0d

学会使用哈希优化

#include <climits>
#include <iostream>
#include <map>
#include <vector>
using namespace std;

int main() {
    map<int, vector<string>> m;
    string str;
    int max_len = 0, min_len = INT_MAX;
    while (getline(cin, str)) {
        m[str.length()].push_back(str);
        if (str.length() > max_len) max_len = str.length();
        if (str.length() < min_len) min_len = str.length();
    }
    for (auto iter: m[min_len]) {
        cout << iter << endl;
    }
    for (auto iter: m[max_len]) {
        cout << iter << endl;
    }
    
}

全部评论

相关推荐

03-26 22:55
门头沟学院 Java
烤冷面在迎接:河南byd,应该就是郑大了。不过24届计算机是特殊情况,那年除了九✌和强2,以及两三个关系够硬的双非,其他的都是炮灰,感觉是十几年来互联网行业最烂的一年,如果想了解最新的就业情况,得找现在的大四。
点赞 评论 收藏
分享
评论
点赞
收藏
分享

创作者周榜

更多
牛客网
牛客企业服务