| Author |
Binary Tree traversal
|
Alec Sultana
Greenhorn
Joined: Jan 02, 2012
Posts: 7
|
|
Hello and Happy new Year ^^
For my school assignment I built myself an AVL tree - it works as intended, however I need to represent the nodes and Data into Left-Data-Right representation, But I have no idea how to do it.
Left-Data-Right representation should be 3 columns. Left subtree's Data - current Node Data - Right subtree Data
Any suggestions would be appreciated
Thanks
|
 |
Campbell Ritchie
Sheriff
Joined: Oct 13, 2005
Posts: 32654
|
|
Welcome to the Ranch
Do you mean an in‑order depth traversal? You don’t usually print that in columns, but the principles are easy:-You can get different traversals by altering the order of parts 1 2 and 3
|
 |
 |
|
|
subject: Binary Tree traversal
|
|
|