Class Tree::PostOrderIterator#

Nested Relationships#

This class is a nested type of Class Tree.

Inheritance Relationships#

Base Type#

Class Documentation#

class PostOrderIterator : public Iterator

Post-order iterator enumerates the nodes in post-order (a node’s sub-trees are visited before the node).

Public Functions

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