14.Flatten Binary Tree to Linked List
Given a binary tree, flatten it to a linked list in-place.
For example, given the following tree:
Solution : (Using Stack)
Last updated
Given a binary tree, flatten it to a linked list in-place.
For example, given the following tree:
Last updated