|
Tree Traversal
An Introduction |
|
Prof. David Bernstein |
| Computer Science Department |
| bernstdh@jmu.edu |
inOrder(current)
{
if (current != null)
{
inOrder(current's left)
print(current's data)
inOrder(current's right)
}
}