I don't know if anyone has had any trouble with creating an iterator object to go hand-in-hand with data structures (stacks, queues, etc.), and I thought I would present an implementation that I'm currently using and updating in my custom library I'm working on.
So far, from what I've tested, most of these methods work fine. Any errors/vulnerablity notices would be great, and suggestions to make it faster or easier to use would be welcome as well.
[NOTE] I'm currently using Visual Studio 2010, using nothing but a blank project file, no MFC or ATL options included, if it helps anyone having trouble with compiling.
TBH - I wouldn't associate iterators with push/pop style operations.
In most people's minds including mine - Iterators are associated with stepping through containers ( iterators exhibit pointer type semantics).
So iterators go forward/backwards through a container and you get the object at the iterator position by dereferencing the iterator like a pointer.
The contatiner may have operations such as copy/remove/find which
may take an iterator to that type of container or return an iterator to an object
in the container - but basicaly the iterators are fairly passive things.
This actually started out when I first started to program with data structures. After I figured out how to program them, I tried to think of a way to access them via the [] operator.
A year's passed since then. Now that I know how to resize arrays, this code looks silly in retrospect.
To clarify, an iterator is an object that steps through a structure, returning data at certain points, correct? I think I need some review...