Open In App
Related Articles

The Great Tree-List Recursion Problem.

Improve Article
Improve
Save Article
Save
Like Article
Like

Asked by Varun Bhatia.

Question:
Write a recursive function treeToList(Node root) that takes an ordered binary tree and rearranges the internal pointers to make a circular doubly linked list out of the tree nodes. The”previous” pointers should be stored in the “small” field and the “next” pointers should be stored in the “large” field. The list should be arranged so that the nodes are in increasing order. Return the head pointer to the new list.

This is very well explained and implemented at: Convert a Binary Tree to a Circular Doubly Link List

References:
http://cslibrary.stanford.edu/109/TreeListRecursion.html

Feeling lost in the world of random DSA topics, wasting time without progress? It's time for a change! Join our DSA course, where we'll guide you on an exciting journey to master DSA efficiently and on schedule.
Ready to dive in? Explore our Free Demo Content and join our DSA course, trusted by over 100,000 geeks!

Last Updated : 10 Jan, 2023
Like Article
Save Article
Similar Reads
Related Tutorials