add diagram of post-order traversal to chp5.md.

This commit is contained in:
Shine wOng
2019-06-02 15:00:24 +08:00
parent 24fd74d53c
commit 0b396e1652

View File

@@ -272,7 +272,7 @@ void BinNode<T>::inOrder_It2(VST &visit) {
后续遍历的访问过程如下图所示:
![后续遍历的访问过程]()
![后续遍历的访问过程](images/postOrder.png)
综上所述,后序遍历的非递归算法如下: