en

Postorder

ru

Translation postorder into russian

postorder
Noun
raiting
In a postorder traversal of a binary tree, the nodes are recursively visited in this order: left, right, root.
При постфиксном обходе двоичного дерева узлы рекурсивно посещаются в следующем порядке: левый, правый, корень.

Definitions

postorder
Noun
raiting
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.