【题解】16643. 统计数字

统计数字

https://ac.nowcoder.com/acm/problem/16643

为大家介绍一种使用 map 的解法,代码很简洁。

#include<bits/stdc++.h>

using namespace std;

int main() {
    int n, t;
    map<int, int> m;
    cin >> n;
    for(int i = 0; i < n ; i++) {
        cin >> t;
        m[t]++;
    }
    for(auto it = m.begin() ; it != m.end() ; it++) {
        cout << it->first << ' ' << it->second << endl;
    }
    return 0;
}
全部评论
好像运行的时候显示 "C:\Users\计算机\Desktop\未命名1.cpp [Error] 'it' does not name a type
点赞 回复 分享
发布于 2020-12-03 21:31

相关推荐

2024-12-30 22:49
长沙理工大学 Java
神哥了不得:没什么可以指导的地方了,简历确实牛,我大号分享过投递策略,广投就行
点赞 评论 收藏
分享
评论
6
收藏
分享

创作者周榜

更多
牛客网
牛客企业服务