-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy path2487. Remove Nodes From Linked List.cpp
118 lines (79 loc) · 2.57 KB
/
2487. Remove Nodes From Linked List.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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
You are given the head of a linked list.
Remove every node which has a node with a strictly greater value anywhere to the right side of it.
Return the head of the modified linked list.
Example 1:
Input: head = [5,2,13,3,8]
Output: [13,8]
Explanation: The nodes that should be removed are 5, 2 and 3.
- Node 13 is to the right of node 5.
- Node 13 is to the right of node 2.
- Node 8 is to the right of node 3.
Example 2:
Input: head = [1,1,1,1]
Output: [1,1,1,1]
Explanation: Every node has value 1, so no nodes are removed.
Constraints:
The number of the nodes in the given list is in the range [1, 10^5].
1 <= Node.val <= 10^5
********************************************************************************
# Approach 1: Monotonic stack
/**
* Definition for singly-linked list.
* struct ListNode {
* int val;
* ListNode *next;
* ListNode() : val(0), next(nullptr) {}
* ListNode(int x) : val(x), next(nullptr) {}
* ListNode(int x, ListNode *next) : val(x), next(next) {}
* };
*/
class Solution {
public:
ListNode* removeNodes(ListNode* head) {
if (!head) return head;
stack<ListNode*> s;
ListNode *curr = head, *tmp = NULL;
while (curr) {
while (!s.empty() && s.top()->val < curr->val) {
tmp = s.top();
s.pop();
delete(tmp);
}
if (s.empty()) head = curr; // new updated head
else s.top()->next = curr;
s.push(curr);
curr = curr->next;
}
return head;
}
};
TC -> O(n), n is the length of the linked list
SC -> O(n), n is the length of the linked list
********************************************************************************
# Approach 2: Recursion
/**
* Definition for singly-linked list.
* struct ListNode {
* int val;
* ListNode *next;
* ListNode() : val(0), next(nullptr) {}
* ListNode(int x) : val(x), next(nullptr) {}
* ListNode(int x, ListNode *next) : val(x), next(next) {}
* };
*/
class Solution {
public:
ListNode* removeNodes(ListNode* head) {
if (!head || !head->next) return head;
ListNode *highestValuedRightNode = removeNodes(head->next);
if (highestValuedRightNode->val > head->val) {
ListNode *tmp = head;
delete(tmp);
return highestValuedRightNode;
}
head->next = highestValuedRightNode;
return head;
}
};
TC -> O(n), n is the length of the linked list
SC -> O(n), n is the length of the linked list (recursive call stack)