下面是链表节点的iterator_facade的实现。它与the docs中显示的几乎相同,只是它具有Value * dereference类型而不是Value&。
问题在于使用带有std :: find的迭代器,它会为查找模板抛出这些编译错误。
编辑一个
有几个人注意到std :: find需要指针值,因为iterator_facade取消引用指针。我也有这个想法。在这种情况下产生的编译错误是
传递指针以找到错误:
it = find(begin, end, (n2));
[100%] Building CXX object CMakeFiles/node_example.dir/main_example.cpp.o
/usr/include/c++/4.2.1/bits/stl_algo.h: In function '_InputIterator std::find(_InputIterator, _InputIterator, const _Tp&) [with _InputIterator = node_iter<node<int> >, _Tp = node<int>*]':
/Users/jkyle/Projects/BoostIteratorExample/main_example.cpp:102: instantiated from here
/usr/include/c++/4.2.1/bits/stl_algo.h:327: error: no matching function for call to '__find(node_iter<node<int> >&, node_iter<node<int> >&, node<int>* const&, boost::forward_traversal_tag)'
make[2]: *** [CMakeFiles/node_example.dir/main_example.cpp.o] Error 1
make[1]: *** [CMakeFiles/node_example.dir/all] Error 2
编辑两个
我还应该注意到我制作了自己的查找模板,例如
template<class ForwardIterator, class ValueType>
ForwardIterator find(ForwardIterator begin, ForwardIterator end, ValueType value)
{
while (begin != end)
{
if (*begin == value)
{
break;
}
++begin;
{
return begin;
}
错误输出:
[100%] Building CXX object CMakeFiles/node_example.dir/main_example.cpp.o
/usr/include/c++/4.2.1/bits/stl_algo.h: In function '_InputIterator
std::find(_InputIterator, _InputIterator, const _Tp&) [with _InputIterator =
node_iter<node<int> >, _Tp = node<int>]':
/Users/jkyle/Projects/BoostIteratorExample/main_example.cpp:102:instantiated from
here
/usr/include/c++/4.2.1/bits/stl_algo.h:327: error: no matching function for
call to '__find(node_iter<node<int> >&, node_iter<node<int> >&, const node<int>&,
boost::forward_traversal_tag)'
make[2]: *** [CMakeFiles/node_example.dir/main_example.cpp.o] Error 1
make[1]: *** [CMakeFiles/node_example.dir/all] Error 2
make: *** [all] Error 2
编辑三个
有一些有用的答案可以解决迭代的直接问题。但是,我主要担心的是为什么我的boost :: iterator_facade的行为与我对期望的STL指针容器的迭代器的行为不一样。下面的示例代码演示了我期望从STL迭代器获取指针容器的行为:
#include <iostream>
#include <vector>
#include <algorithm>
#include <cassert>
using namespace std;
struct Foo
{
int bar;
};
int main ()
{
vector<Foo *> list;
Foo *f1 = new Foo;
f1->bar = 5;
Foo *f2 = new Foo;
f2->bar = 10;
Foo *f3 = new Foo;
f3->bar = 15;
list.push_back(f1);
list.push_back(f2);
list.push_back(f3);
// with the vector class, there is no need for comparator function for the iterator
// to be properly dereferenced and compared
vector<Foo *>::iterator it = find(list.begin(), list.end(), f2);
assert(*it == f2);
return 0;
}
示例来源:
#include <iostream>
#include <boost/type_traits/is_convertible.hpp>
#include <boost/utility/enable_if.hpp>
#include <boost/iterator/iterator_facade.hpp>
#include <algorithm>
using namespace std;
template <class T>
struct node
{
node() : m_next(0) {}
node(T *x)
: m_value(x)
{}
// Each node manages all of its tail nodes
~node() { delete m_next; }
// Access the rest of the list
node* next() const { return m_next; }
void append(node* p)
{
if (m_next)
m_next->append(p);
else
m_next = p;
}
void print() const { cout << *this->m_value << endl; }
private:
T *m_value;
node* m_next;
};
template <class Value>
class node_iter
: public boost::iterator_facade<
node_iter<Value>
, Value
, boost::forward_traversal_tag
, Value*
>
{
private:
struct enabler {};
public:
node_iter()
: m_node(0) {}
explicit node_iter(Value* p)
: m_node(p) {}
template <class OtherValue>
node_iter(node_iter<OtherValue> const& other,
typename boost::enable_if<
boost::is_convertible<OtherValue*,Value*>,
enabler>::type = enabler() )
: m_node(other.m_node) {}
private:
friend class boost::iterator_core_access;
template <class> friend class node_iter;
template <class OtherValue>
bool equal(node_iter<OtherValue> const& other) const
{
return this->m_node == other.m_node;
}
void increment()
{ m_node = m_node->next(); }
Value* dereference() const
{ return m_node; }
Value* m_node;
};
typedef node_iter< node<int> > node_iterator;
typedef node_iter< node<int> const > node_const_iterator;
int main ()
{
node<int> *n1 = new node<int>(new int(5));
node<int> *n2 = new node<int>(new int(10));
node<int> *n3 = new node<int>(new int(15));
n1->append(n2);
n2->append(n3);
node_iterator it;
node_iterator begin(n1);
node_iterator end(0);
it = find(begin, end, *n2);
return 0;
}
答案 0 :(得分:2)
迭代器公开的value_type
是一个指针(Value*
)。这意味着所有STL(和符合)算法将在迭代时看到这些指针。我建议你将find_if与自定义谓词对象一起使用:
#include <functional>
#include <algorithm>
template <typename Value>
struct cmp_ind_impl : std::unary_function <Value*, bool>
{
cmp_ind(Value* n) : n_(n) {}
bool operator<(Value* n) const
{
return *n == *n_;
}
Value* n_;
};
template <typename Value>
cmp_ind_impl cmp_ind(Value* n)
{
return cmp_ind_impl<Value>(n);
}
std::find_if(begin, end, cmp_ind(n2));
谓词(cmp_ind_impl
)为您执行正确的间接工作。辅助函数(cmp_ind
)并不是必需的,只是简化了谓词的构造(即用户不需要模板向导)。
答案 1 :(得分:0)
除了它有一个Value * dereference类型
std::find
在找到该项目时不知道取消引用指针。您的迭代器必须返回引用,或者您需要将指针作为您在find
中查找的项目传递。
答案 2 :(得分:0)
*begin
会返回node<int>*
,您要求它与node<int>
进行比较。尝试传递n2来查找:
it = find(begin, end, n2);
答案 3 :(得分:0)
目前你使std :: find()比较2 node<T>
的。一种可能的解决方案是补充
bool operator==(node<T> x) {return (this->m_value==x.m_value);}
到您的节点类模板。