-
Notifications
You must be signed in to change notification settings - Fork 1
/
Binary_Tree_to_DLL.cpp
73 lines (61 loc) · 1.61 KB
/
Binary_Tree_to_DLL.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
/*
Problem Statement:
-----------------
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 same as Inorder of the given Binary Tree.
The first node of Inorder traversal (leftmost node in BT) must be the head node of the DLL.
Example 1:
--------
Input:
1
/ \
3 2
Output:
3 1 2
2 1 3
Explanation: DLL would be 3<=>1<=>2
Example 2:
---------
Input:
10
/ \
20 30
/ \
40 60
Output:
40 20 60 10 30
30 10 60 20 40
Explanation: DLL would be 40<=>20<=>60<=>10<=>30.
Your Task: You don't have to take input. Complete the function bToDLL() that takes root node of the tree as a parameter
and returns the head of DLL . The driver code prints the DLL both ways.
Expected Time Complexity: O(N).
Expected Auxiliary Space: O(H).
Note: H is the height of the tree and this space is used implicitly for recursion stack.
*/
// Link --> https://practice.geeksforgeeks.org/problems/binary-tree-to-dll/1
// Code:
class Solution
{
public:
Node *previous = NULL;
Node *head = NULL;
Node* bToDLL(Node *root)
{
if(root == NULL)
return NULL;
bToDLL(root->left);
if(previous == NULL)
{
head = root;
previous = root;
}
else
{
previous->right = root;
root->left = previous;
previous = root;
}
bToDLL(root->right);
return head;
}
};