Content deleted Content added
m Added {{anchor|}} |
|||
Line 105:
===Depth-first search implementation===
===={{anchor|Pre-order traversal code|Pre-order traversal code}}Pre-order implementation====
{|
|- style="vertical-align:top;"
Line 130:
stack.push(node.left)
|}
===={{anchor|Post-order traversal code|Post-order traversal code}}Post-order implementation====
|