-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnerestSmallerToRight.cpp
65 lines (61 loc) · 1.45 KB
/
nerestSmallerToRight.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
// Find smallest to left of array of each element . Return -1 is no element is smaller .
#include <bits/stdc++.h>
using namespace std;
// Using Stack data structure
vector<int> NGEWithStack(vector<int> arr)
{
int n = arr.size();
stack<int> st;
vector<int> ans;
// for (int i = n - 1 ; i >= 0; i--)
// {
// if (!st.empty())
// {
// while (!st.empty() && st.top() >= arr[i])
// {
// st.pop();
// }
// }
// st.empty() ? ans.push_back(-1) : ans.push_back(st.top());
// st.push(arr[i]);
// }
for (int i = n - 1; i >= 0; i--)
{
if (st.size() == 0)
{
ans.push_back(-1);
}
else if (st.size() > 0 && st.top() < arr[i])
{
ans.push_back(st.top());
}
else if (st.size() > 0 && st.top() >= arr[i])
{
while (st.size() > 0 && st.top() >= arr[i])
{
st.pop();
}
if (st.size() == 0)
{
ans.push_back(-1);
}
else
{
ans.push_back(st.top());
}
}
st.push(arr[i]);
}
reverse(ans.begin(), ans.end());
return ans;
}
int main()
{
vector<int> arr{4, 5, 2, 10, 8};
vector<int> answer = NGEWithStack(arr);
for (int i = 0; i < answer.size(); i++)
{
cout << answer[i] << " ";
}
return 0;
}