题解 | #单调栈#
单调栈
http://www.nowcoder.com/practice/ae25fb47d34144a08a0f8ff67e8e7fb5
单调栈,两遍for循环
import java.util.*;
public class Solution {
/**
* 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可
*
*
* @param nums int一维数组
* @return int二维数组
*/
public int[][] foundMonotoneStack (int[] nums) {
// write code here
int n = nums.length;
int[][] res = new int[n][2];
Deque<Integer> stack = new ArrayDeque<>();
for (int i = 0; i < n; i++) {
// 注意这里题目中说了可能有重复值,所以这里是大于等于,求出严格小于的才可以
while (!stack.isEmpty() && nums[stack.peek()] >= nums[i]) {
stack.pop();
}
// 栈为空说明要么是在上一步全部弹出去了比它大的,证明左边没有比它小的;要么是i = 0还没有压入栈
if (stack.isEmpty() ) {
res[i][0] = -1;
} else {
res[i][0] = stack.peek();
}
stack.push(i);
}
stack.clear();
// 思路一致,但是记得反过来遍历,才能保证从右到左的下标有序性
for (int i = n - 1; i >= 0 ; i--) {
while (!stack.isEmpty() && nums[stack.peek()] >= nums[i]) {
stack.pop();
}
// 栈为空说明要么是在上一步全部弹出去了比它大的,证明右边没有比它小的;要么是i = n - 1还没有压入栈
if (stack.isEmpty() ) {
res[i][1] = -1;
} else {
res[i][1] = stack.peek();
}
stack.push(i);
}
return res;
}
}