-
Notifications
You must be signed in to change notification settings - Fork 510
/
Copy pathBinary Tree to DLL.cpp
75 lines (65 loc) · 1.58 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
74
75
/*
Binary Tree to DLL
==================
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.
Constraints:
1 <= Number of nodes <= 105
1 <= Data of a node <= 105
*/
Node *bToDLL(Node *root)
{
Node *head;
stack<Node *> st;
st.push(root);
auto curr = root;
while (curr->left)
{
st.push(curr->left);
curr = curr->left;
}
head = st.top();
while (st.size())
{
curr = st.top();
st.pop();
auto rightsLeft = curr->right;
while (rightsLeft)
{
st.push(rightsLeft);
rightsLeft = rightsLeft->left;
}
if (st.size())
{
auto nextNode = st.top();
curr->right = nextNode;
nextNode->left = curr;
}
}
return head;
}