Hi All,
How to convert a Binary tree to Circular linked list?
Any help would be appreciated.
With Regards,
A.Ilamparithi.
Printable View
Hi All,
How to convert a Binary tree to Circular linked list?
Any help would be appreciated.
With Regards,
A.Ilamparithi.
Just parse the tree and accumulate visited data into a linked list.
A binary tree parser is a very simple recursive function that you should write easily.