gpt4 book ai didi

c++ - 在 C++ 中访问映射中的第一对和第二对时出现编译器错误

转载 作者:行者123 更新时间:2023-12-04 15:09:56 24 4
gpt4 key购买 nike

内部 for 循环 if else block 中的代码行有什么问题?在 map 中访问一对中的第一个和第二个会产生问题

#include <iostream>
#include <unordered_map>
#include <utility>

using namespace std;
int main() {
int t; cin>>t;
for(int i = 0; i < t; i++){
int n; cin>>n; int sum = 0;
unordered_map<int, pair<int, int>> p;
for(int i = 0; i < n; i++){
int num; cin>>num;
if( (p[num].second ).first == 0)
( (p[num]).second ).first = i;
else
( (p[num]).second ).second = i;
}
unordered_map<int, pair<int, int>> :: iterator it = p.begin();
for(;it != p.end();it++){
int diff = abs(it->second.second - it->second.first);
sum = sum + diff;
}
cout<<sum<<endl;

}
}

enter image description here

这些是我得到的错误:

In function 'int main()':
13:21: error: request for member 'first' in 'p.std::unordered_map<int, std::pair<int, int> >::operator[](num).std::pair<int, int>::second', which is of non-class type 'int'


14:21: error: request for member 'first' in 'p.std::unordered_map<int, std::pair<int, int> >::operator[](num).std::pair<int, int>::second', which is of non-class type 'int'


16:21: error: request for member 'second' in 'p.std::unordered_map<int, std::pair<int, int> >::operator[](num).std::pair<int, int>::second', which is of non-class type 'int'

最佳答案

我认为您混淆了迭代哈希表和使用提供的键访问它的值。

在您的第一个循环中,访问 pair <int, int>值(value),你就做p[num].first (第一个 intpair )或 p[num].second .

它不像你的迭代器循环,其中 it->first指向 key ,it->second.first & it->second.second指向对值。

关于c++ - 在 C++ 中访问映射中的第一对和第二对时出现编译器错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/65389583/

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