PostOrderFlatEnumerator<TKey,TValue> class

Post Order Traversal Enumerator. The BinarySearchTree is enumerated in the order of Left Node, Right Node, Current Value.

public class PostOrderFlatEnumerator<TKey, TValue> : FlatEnumerator<TKey, TValue>
    where TKey : IComparable<TKey>

Public Members

name description
PostOrderFlatEnumerator(…) Standard Constructor.

Protected Members

name description
override Traverse(…) Defines a traversal function for shallow copying the elements from the BinarySearchTree into the passed in Collection.

See Also