Avl.post_order
Conduct a post order traversal of the tree and output the result in a list
Usage
post_order()
Returns:
list
List of post order sequence
Example
from jellybeans.structures import Avltree = Avl(lambda x,y: len(x) >= len(y))tree.insert("abcd")tree.insert("a")tree.insert("aaaaaaa")tree.insert("aac")print(tree.post_order()) # ['aac', 'a', 'aaaaaaa', 'abcd']