本文主要是介绍C++ 二维 map vector 赋值 遍历 实例 降序 倒序,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
默认升序
#include <iostream>
#include <map>
#include <vector>
using namespace std;int main() {std::map<int, std::vector<int>> count;count[44].emplace_back(1);count[44].emplace_back(1);count[2].emplace_back(2);count[2].emplace_back(22);count[3].emplace_back(3333);count[3].emplace_back(555);for(auto p = count.begin(); p!=count.end(); p++){cout <<" \n "<<(*p).first << ": " ;for(auto b = ((*p).second).begin(); b!=((*p).second).end(); b++){cout<<(*b) <<", ";}}return 0;
}
若想降序,使用std::greater<int>
#include <iostream>
#include <map>
#include <vector>
using namespace std;int main() {std::map<int, std::vector<int>, std::greater<int>> count;count[44].emplace_back(1);count[44].emplace_back(1);count[2].emplace_back(2);count[2].emplace_back(22);count[3].emplace_back(3333);count[3].emplace_back(555);for(auto p = count.begin(); p!=count.end(); p++){cout <<" \n "<<(*p).first << ": " ;for(auto b = ((*p).second).begin(); b!=((*p).second).end(); b++){cout<<(*b) <<", ";}}return 0;
}
关注工种号:微程序学堂
这篇关于C++ 二维 map vector 赋值 遍历 实例 降序 倒序的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!