I need to print a binary search tree in file. When I will retrieve the same 
tree from the file.

I have thought about printing in xml format like this


          100
         /     \
      50      150
     /   \       /   \
   30  70   120 200

<Level 0>
100
<Level 1>
50
<Level 2>
30
</Level2>
<Level 2>
70
</Level 2>
</Level 1>
<Level 1>
150
<Level 2>
120
</Level 2>
<Level 2>
200
</level 2>
</level 1>
</level 0>

I don't know will this be the best solution or not.

Please suggest me how to approach it or some better solution.


Regards
Asit
http://kodeyard.blogspot.com/

-- 
You received this message because you are subscribed to the Google Groups 
"Algorithm Geeks" group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/algogeeks/-/3jOjGyT3F-kJ.
To post to this group, send email to algogeeks@googlegroups.com.
To unsubscribe from this group, send email to 
algogeeks+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/algogeeks?hl=en.

Reply via email to