Postorder
Übersetzung von "postorder" ins Russisch
postorder
SubstantivUK
/ˈpəʊstˌɔːdə/
US
/ˈpoʊstˌɔrdər/
postorder
postorders Pl.
постфиксный обход
In a postorder traversal of a binary tree, the nodes are recursively visited in this order: left, right, root.
При постфиксном обходе двоичного дерева узлы рекурсивно посещаются в следующем порядке: левый, правый, корень.
Definitionen
postorder
SubstantivUK
/ˈpəʊstˌɔːdə/
US
/ˈpoʊstˌɔrdər/
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.
The sequence of nodes produced by performing a postorder traversal.
The postorder of the given tree is D, E, B, F, C, A.
postorder
AdjektivUK
/ˈpəʊstˌɔːdə/
US
/ˈpoʊstˌɔrdər/
Relating to a traversal of a tree data structure in which the left child, right child, and then the parent node are visited.
In a postorder traversal algorithm, each node is processed after its children.
Redewendungen und Phrasen
postorder traversal
Postorder traversal is used when deleting nodes in a tree.
обратный обход
Обратный обход используется при удалении узлов в дереве.
compute (someone's) postorder
The algorithm computes the postorder of each node.
вычислить постфиксный порядок (кого-либо)
Алгоритм вычисляет постфиксный порядок каждого узла.
postorder numbering
Postorder numbering is used to store the sequence in which nodes are visited.
нумерация в постфиксном порядке
Нумерация в постфиксном порядке используется для хранения последовательности посещения узлов.
obtain a postorder list
We need to obtain a postorder list of the vertices.
получить список в постфиксном порядке
Нам нужно получить список вершин в постфиксном порядке.
assign postorder values
Assign postorder values during the DFS traversal.
присвоить постфиксные значения
Присвойте постфиксные значения во время обхода в глубину.