-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstackRest.cpp
More file actions
150 lines (144 loc) · 3.12 KB
/
stackRest.cpp
File metadata and controls
150 lines (144 loc) · 3.12 KB
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
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
// Nearest Greater to left
/* brute has inner loop -> j= 0 to i j++
-> j= i-1 to 0 j--
-> j=i-1 to n j++
-> j=n to i j--
so likely stack
*/
// str = ["","one","two"...]
// for()
// map {0:str[0]}
// use this map for
#include <stack>
#include <vector>
using namespace std;
// Nearest Greater to left
vector<int> ngl(vector<int> arr)
{
int n = arr.size();
stack<int> st;
vector<int> result;
for (int i = 0; i < n; i++)
{
while (!st.empty() && st.top() <= arr[i])
{
st.pop();
}
result.push_back(st.empty() ? -1 : st.top());
st.push(arr[i]);
}
return result;
}
// Nearest Greater to right
// opposite of ngr
vector<int> ngr(vector<int> arr)
{
int n = arr.size();
stack<int> st;
vector<int> result;
for (int i = n - 1; i >= 0; i--)
{
while (!st.empty() && st.top() <= arr[i])
{
st.pop();
}
result.push_back(st.empty() ? -1 : st.top());
st.push(arr[i]);
}
return result;
}
// Nearest Smallest to left
vector<int> nsl(vector<int> arr)
{
int n = arr.size();
stack<int> st;
vector<int> result;
for (int i = 0; i < n; i++)
{
while (!st.empty() && st.top() >= arr[i])
{
st.pop();
}
result.push_back(!st.empty() ? -1 : st.top());
st.push(arr[i]);
}
return result;
}
// Stack NGR && NRL revision
// ngr
vector<int> ngrRevision(vector<int> arr)
{
vector<int> result;
int n = arr.size();
stack<int> st;
for (int i = n - 1; i <= 0; i++)
{
while (!st.empty() && st.top() <= arr[i])
{
st.pop();
}
result.push_back(st.empty() ? -1 : st.top());
st.push(arr[i]);
}
return result;
}
vector<int> nglRevision(vector<int> arr)
{
vector<int> result;
int n = arr.size();
stack<int> st;
for (int i = 0; i < n; i++)
{
while (!st.empty() && st.top() <= arr[i])
{
st.pop();
}
result.push_back(st.empty() ? -1 : st.top());
st.push(arr[i]);
}
return result;
}
// STOCK SPAN PROBLEM - nearest greater to left
vector<int> stockSpan(vector<int> arr)
{
int n = arr.size();
vector<int> result;
stack<pair<int, int>> st;
vector<int> span;
for (int i = 0; i < n; i++)
{
while (!st.empty() && st.top().first < arr[i])
{
st.pop();
}
result.push_back(st.empty() ? -1 : st.top().second);
st.push(make_pair(arr[i], i));
}
for (int i = 0; i < n; i++)
{
result[i] = result[i] - i;
}
return result;
}
// stock span revision
vector<int> stockRevision(vector<int> arr)
{
int n = arr.size();
stack<pair<int, int>> st;
vector<int> result;
for (int i = 0; i < n; i++)
{
while (!st.empty() && st.top().first < arr[i])
{
st.pop();
}
result.push_back(st.empty() ? -1 : st.top().second);
st.push(make_pair(arr[i], i));
}
for (int i = 0; i < n; i++)
{
result[i] = i - result[i];
}
return result;
}
// do smallest nearest questions for revision