LeetCode 402. Remove K Digits
Question
Given string num representing a non-negative integer num
, and an integer k
, return the smallest possible integer after removing k
digits from num
.
Example 1:
1 | Input: num = "1432219", k = 3 |
Example 2:
1 | Input: num = "10200", k = 1 |
Example 3:
1 | Input: num = "10", k = 2 |
Constraints:
1 <= k <= num.length <= 105
num
consists of only digits.num
does not have any leading zeros except for the zero itself.
Source: https://leetcode.com/problems/remove-k-digits/
Solution
We use the greedy thought. Assume you are given a set of numbers, how to order these numbers to make the value as small as possible? Obviously, we should place small numbers on high digits.
In stack
, we try to make elements ascending. Before running out of remove operations stack is monotonically ascending, because we keep kicking out large numbers and let small numbers be put on high digits.
Note that for Deque
, pop() = pollFirst() = removeFirst()
, push() = offerFirst() = addFirst()
. Because for a linked-list based deque, its head is the top of stack.
1 | public String removeKdigits(String num, int k) { |
LeetCode 402. Remove K Digits