Guest User

Untitled

a guest
Jun 20th, 2018
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.14 KB | None | 0 0
  1. TreeWalk
  2.  
  3. while left[i] != null
  4. print left[i]
  5. left[i] = left[i].left
  6.  
  7. while right[i] != null
  8. print right[i]
  9. right[i] = right[i].right
Add Comment
Please, Sign In to add comment