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

最长&最短文本

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-10 11:23
门头沟学院 Java
点赞 评论 收藏
分享
03-06 18:20
门头沟学院 Java
点赞 评论 收藏
分享
评论
点赞
收藏
分享

创作者周榜

更多
牛客网
牛客网在线编程
牛客网题解
牛客企业服务