Hi, i have a tree structure madeup of tree nodes like this one:

Qt Code:
  1. class TreeNode {
  2.  
  3. TreeNode* LeftChild;
  4. TreeNode* RightChild;
  5. int data;
  6. }
To copy to clipboard, switch view to plain text mode 

And i would like to graphically represent this... Is there any "easy" way that i am not aware of?

Thank you for your time,
NA