Class Tree::ReversePostOrderIterator#

Nested Relationships#

This class is a nested type of Class Tree.

Inheritance Relationships#

Base Type#

Class Documentation#

class ReversePostOrderIterator : public Iterator

Reverse post-order iterator, as the name suggests, enumerates the nodes in the order that is reverse of post-order.

Public Functions

ReversePostOrderIterator(Tree &t)
inline virtual ~ReversePostOrderIterator()
inline virtual void operator++()
inline virtual operator bool()
inline operator Node*()
inline Node *operator->()