gpt4 book ai didi

c++ - 如何访问成对元素的映射?

转载 作者:行者123 更新时间:2023-11-30 02:16:10 25 4
gpt4 key购买 nike

#include <iostream>
#include <map>
#include <set>
#include <utility>
int main()
{
std::map<int,std::set<std::pair<int,int>>>map1;

for(int i = 0; i != 3; ++i)
map1[i].insert({i+1,i+2});

for(auto i : map1){

std::cout<<i.first<<" ";

pair<int,int> j = i.second;

j.first<<" "<<j.second<<"\n";

}
return 0;
}

error: conversion from std::set < std::pair< int, int > > to non-scalar type std::pair < int, int > requested pair< int, int > j = i.second;

最佳答案

i.secondstd::set,而不是内部 std::pair

你应该这样做:

for(auto i : map1)
{
std::cout<< i.first << " ";
std::set<std::pair<int,int>> j = i.second;
for (const auto& k : j)
{
std::cout << k.first<<" "<<k.second<<"\n";
}
}

Demo

关于c++ - 如何访问成对元素的映射?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55254013/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com