
Postorder

Перевод postorder на русский язык
postorder
СуществительноеIn a postorder traversal of a binary tree, the nodes are recursively visited in this order: left, right, root.
При постфиксном обходе двоичного дерева узлы рекурсивно посещаются в следующем порядке: левый, правый, корень.
Опеределения
postorder
СуществительноеA method of traversing a tree data structure where the nodes are recursively visited in the order of left child, right child, and then the parent node.
In a postorder traversal of the binary tree, the nodes are visited in the sequence of left subtree, right subtree, and then the root node.