gpt4 book ai didi

c++ - 使用 STL 和一元函数适配仿函数检查列表成员资格

转载 作者:太空宇宙 更新时间:2023-11-04 15:10:48 25 4
gpt4 key购买 nike

我试图编写一个简短的实用仿函数,它接受两个 std::pair 项目并测试它们是否相等,但忽略了元素的顺序。此外(这是我遇到麻烦的地方)我编写了一个函数来获取这些 std::pair 项的容器并测试容器中给定对参数的成员资格。

/* A quick functor way to check the identity of the two items of a pair to see if each pair contains the same items regardless of order */
template <class T>
class EqualPairs : public std::binary_function<T,T,bool> {
T arg2;

public:
explicit EqualPairs (const T& x) : arg2(x) { }

bool operator() (const T& arg1) {
bool same = false;
if (arg1 == arg2 || (arg1.first == arg2.second && arg1.second == arg2.first))
same = true;
return same;
}
};

/* checks to see if the give pair p is a member of the list of pairs l. The pairs are compared disregarding the order of the pair elements (i.e. (4,2) == (2,4)) */
template <class P>
bool PairListMember (const P& p, const std::vector<P>& l)
{
std::vector<P>::iterator it;
it = find_if (l.begin(), l.end(), EqualPairs<P>(p));
bool member_of_list = (it != l.end()) ? true : false;
return member_of_list;
}

我想不出一种允许通用容器选择的简洁方法,所以我暂时将 std::vector 硬编码为容器类型。帮助使容器类型通用也将不胜感激,但现在我只想让上面的编译和工作。我得到的错误是:

In function ‘bool PairListMember(const P&, const std::vector<P, std::allocator<_CharT> >&)’:

error: expected `;' before ‘it’
error: ‘it’ was not declared in this scope

In function ‘bool PairListMember(const P&, const std::vector<P, std::allocator<_CharT> >&) [with P = std::pair<int, int>]’:

error: dependent-name ‘std::vector<P,std::allocator<_CharT> >::iterator’ is parsed as a non-type, but instantiation yields a type
note: say ‘typename std::vector<P,std::allocator<_CharT> >::iterator’ if a type is meant

按照建议通过添加“typename”更改代码只会导致以下错误:

error: no match for ‘operator=’ in ‘it = std::find_if [with _InputIterator = __gnu_cxx::__normal_iterator<const std::pair<int, int>*, std::vector<std::pair<int, int>, std::allocator<std::pair<int, int> > > >, _Predicate = EqualPairs<std::pair<int, int> >](((const std::vector<std::pair<int, int>, std::allocator<std::pair<int, int> > >*)l)->std::vector<_Tp, _Alloc>::begin [with _Tp = std::pair<int, int>, _Alloc = std::allocator<std::pair<int, int> >](), ((const std::vector<std::pair<int, int>, std::allocator<std::pair<int, int> > >*)l)->std::vector<_Tp, _Alloc>::end [with _Tp = std::pair<int, int>, _Alloc = std::allocator<std::pair<int, int> >](), EqualPairs<std::pair<int, int> >(((const std::pair<int, int>&)((const std::pair<int, int>*)p))))’

/usr/include/c++/4.2/bits/stl_iterator.h:637: note: candidates are: __gnu_cxx::__normal_iterator<std::pair<int, int>*, std::vector<std::pair<int, int>, std::allocator<std::pair<int, int> > > >& __gnu_cxx::__normal_iterator<std::pair<int, int>*, std::vector<std::pair<int, int>, std::allocator<std::pair<int, int> > > >::operator=(const __gnu_cxx::__normal_iterator<std::pair<int, int>*, std::vector<std::pair<int, int>, std::allocator<std::pair<int, int> > > >&)

最佳答案

对于您的编译器错误,您需要使用 typename 关键字。

typename std::vector<P>::iterator it;

iterator 是一个类型名,即它指的是 std::vector 中的嵌入类型。当您在模板中使用 :: 运算符访问类型名时,您需要使用 typename 关键字,以便编译器知道它是类型的名称,而不是某个变量或函数的名称在类里面。

编辑:另外,您需要使用const_iterator,因为在这种情况下您的 vector 是const。

typename std::vector<P>::const_iterator it;

关于c++ - 使用 STL 和一元函数适配仿函数检查列表成员资格,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1773757/

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