vote up 2 vote down star
1

I have a class TContainer that is an aggregate of several stl collections pointers to TItems class.

I need to create an Iterator to traverse the elements in all the collections in my TContainer class abstracting the client of the inner workings.

What would be a good way to do this?. Should I crate a class that extends an iterator (if so, what iterator class should I extend), should I create an iterator class that is an aggregate of iterators?

I only need a FORWARD_ONLY iterator.

I.E, If this is my container:

typedef std::vector <TItem*> ItemVector;
class TContainer {
   std::vector <ItemVector *> m_Items;
};

What would be a good Iterator to traverse all the items contained in the vectors of the m_Items member variable.

Thanks in advance.

flag
Can you tell us more about your container and iterator? For example, is the iterator bi-directional? – joshdick May 8 at 14:13
Thanks, I edited my question to clarify your question. – Sugar May 8 at 14:21
You really want m_items to be a vector of pointers? Why not just a vector of ItemVector? – Martin York May 8 at 17:45

4 Answers

vote up 7 vote down check

When I did my own iterator (a while ago now) I inherited from std::iterator and specified the type as the first template parameter. Hope that helps.

For forward iterators user forward_iterator_tag rather than input_iterator_tag in the following code.

This class was originally taken from istream_iterator class (and modified for my own use so it may not resemble the istram_iterator any more).

template<typename T>
class <PLOP>_iterator
         :public std::iterator<std::input_iterator_tag,       // type of iterator
                               T,ptrdiff_t,const T*,const T&> // Info about iterator
{
    public:
        const T& operator*() const;
        const T* operator->() const;
        <PLOP>__iterator& operator++();
        <PLOP>__iterator operator++(int);
        bool equal(<PLOP>__iterator const& rhs) const;
};

template<typename T>
inline bool operator==(<PLOP>__iterator<T> const& lhs,<PLOP>__iterator<T> const& rhs)
{
    return lhs.equal(rhs);
}

Check this documentation on iterator tags:
http://www.sgi.com/tech/stl/iterator_tags.html

Having just re-read the information on iterators:
http://www.sgi.com/tech/stl/iterator_traits.html

This is the old way of doing things (iterator_tags) the more modern approach is to set up iterator_traits<> for your iterator to make it fully compatible with the STL.

link|flag
vote up 0 vote down

Check the Views Template Library.

Especially check

  1. Union View presenting two containers concatenated.
  2. Concatenation View presenting a collection of containers concatenated.
link|flag
vote up 6 vote down

If you have access to Boost, using iterator_facade is the most robust solution, and it's pretty simple to use.

link|flag
vote up 2 vote down

An iterator is just a class that supports a certain interface. At minimum, you will want to be able to:

  • increment and/or decrement it
  • dereference it to get the object it "points" to
  • test it for equality and inequality
  • copy and assign it

Once you have a class that can do that sensibly for your collection, you will need to modify the collection to have functions that return iterators. At minimum you will want

  • a begin() function that returns an instance of your new iterator type positioned at the first element
  • an end() function that returns an iterator which is (possibly notionally) positioned at one past the end of the items in your container
link|flag
Its a bit more complicated than that. Add Iterator_traits<> to your list and you are done. – Martin York May 8 at 14:41
You can use iterators without the traits. – Neil Butterworth May 8 at 14:46
I know - but lots of people never use those algorithms. I think it's better for people to build a non-template version first, not inheriting from std::iterator, and then templatising it after they get everything working. Others may disagree, of course. – Neil Butterworth May 8 at 15:54
The keyword there is 'You', but the STL relies on the traits when you use iterators in any of the non trivial algorithms (and even a lot of the trivial ones). The Iterator by-itself is not actually defined it is just a laymen term to describe the 6 iterator concepts defined by the standard. Each of these concepts has a requirement of specific type information being available. – Martin York May 8 at 16:01

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.