Tag: PostOrder

  • Algorithms 101: PostOrder Traversal

    后序遍历 PostOrder traversal is a tree traversal method where the root node is visited after its children. It is one of the depth-first search (DFS) methods used to explore all the nodes in a tree. In PostOrder traversal, the process is to recursively visit the left subtree first, then the…