1

Can anyone explain the Robson algorithm for tree traversal? I'm having trouble understanding what the steps of the algorithm are.

user2980766
  • 151
  • 6

1 Answers1

0

Do you happen to have an assignment due on 5/12 that you are trying to complete?

Robson tree traversals is just a way to traverse trees using a bunch of pointers. The Steps Outlined Here do a very good job at outlining the procedures.

I would recommend creating a tree with pen and paper and following the steps. It's the easiest way to wrap your head around all of pointers, and what they are doing.

Chris Snyder
  • 86
  • 1
  • 3