• Courses
  • Tutorials
  • Jobs
  • Practice
  • Contests
June 29, 2022 |10.2K Views
Convert a given Binary Tree to Doubly Linked List | Set 3
Description
Discussion

Given a Binary Tree (BT), convert it to a Doubly Linked List(DLL) In-Place. The left and right pointers in nodes are to be used as previous and next pointers respectively in converted DLL. 

The order of nodes in DLL must be the same as in Inorder for the given Binary Tree. The first node of Inorder traversal (leftmost node in BT) must be the head node of the DLL.

Convert a given Binary Tree to Doubly Linked List  Set 3  : https://www.geeksforgeeks.org/convert-given-binary-tree-doubly-linked-list-set-3/

Read More