c_cpp 地图中的对

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了c_cpp 地图中的对相关的知识,希望对你有一定的参考价值。

#include <bits/stdc++.h>
using namespace std;

// #Maps #Hashing #IMP_NOTES
// https://www.geeksforgeeks.org/map-pairs-stl/
// https://www.geeksforgeeks.org/map-associative-containers-the-c-standard-template-library-stl/

int main() {
    int n;
    cin>> n;
    map< pair<int,int>, int > m;
    while(n--){
	    int x,y,data;
	    cin>> x >> y >> data;
	    m[{x,y}] = data;
	
    }
    for(auto it = m.begin();it != m.end();it++){
       cout << (it->first).first;
       cout << " ";
       cout << (it->first).second;
       cout << " ";
       cout <<"data: ";
       cout << (it->second)<<endl;
    }
	return 0;
}

以上是关于c_cpp 地图中的对的主要内容,如果未能解决你的问题,请参考以下文章

c_cpp shared_ptr用法与地图中的引用计数

c_cpp 找到一个整数数组中包含最大乘积的对

c_cpp 找到未排序数组中最大的对总和

c_cpp 1162.地图分析

c_cpp 地图::计数()

c_cpp 地图::找到();