forked from AnasImloul/Leetcode-Solutions
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathRemove K Digits.cpp
57 lines (44 loc) · 1.58 KB
/
Remove K Digits.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
// 😉😉😉😉Please upvote if it helps 😉😉😉😉
class Solution {
public:
string removeKdigits(string num, int k) {
// number of operation greater than length we return an empty string
if(num.length() <= k)
return "0";
// k is 0 , no need of removing / preforming any operation
if(k == 0)
return num;
string res = "";// result string
stack <char> s; // char stack
s.push(num[0]); // pushing first character into stack
for(int i = 1; i<num.length(); ++i)
{
while(k > 0 && !s.empty() && num[i] < s.top())
{
// if k greater than 0 and our stack is not empty and the upcoming digit,
// is less than the current top than we will pop the stack top
--k;
s.pop();
}
s.push(num[i]);
// popping preceding zeroes
if(s.size() == 1 && num[i] == '0')
s.pop();
}
while(k && !s.empty())
{
// for cases like "456" where every num[i] > num.top()
--k;
s.pop();
}
while(!s.empty())
{
res.push_back(s.top()); // pushing stack top to string
s.pop(); // pop the top element
}
reverse(res.begin(),res.end()); // reverse the string
if(res.length() == 0)
return "0";
return res;
}
};