Content deleted Content added
m Formatting ellipses (via WP:JWB) |
Tag: Reverted |
||
Line 35:
===={{anchor|Preorder traversal|Pre-order traversal}}Pre-order, NLR====
# Visit the current node (in the figure: position red) which means the root node.
# Recursively traverse the current node's left subtree.
# Recursively traverse the current node's right subtree.
|