我试图通过迭代器访问vector中的嵌套对,但我在codeblock IDE中收到错误,请帮我怎么做?您可以在附图中看到我的代码。
#include<bits/stdc++.h>
using namestace std;
vector<pair<int , pair<int, bool> > > graph[1000000];
vector<pair<int , pair<int, bool> > >:: iterator it;
queue<int> Q;
int cost[1000000], visit[1000000];
void BFS(int s)
{
Q.push(s)
visit[s] = 1;
while(!Q.empty() {
int v = Q.front();
Q.pop();
for (it=graph[v].begin(); it != graph[v].end(); it++) {
if(cost[it->first] == -1) {
cost[it->first] = it->second->first + cost[v];
Q.push(it->first);
}
答案 0 :(得分:1)
it->first.second
因为它是一个指针,但它指向的对是该对本身而不是指针。