共计 405 个字符,预计需要花费 2 分钟才能阅读完成。
Leetcode: 503. 下一个更大元素 II
关键点:
遍历数组 nums 时,用 for(int i = 0;i < nums.length * 2;i++) 对数组遍历两次,下标 index 为 i 对长度 len 取余,否则会越界。具体见下列代码。
class Solution {public int[] nextGreaterElements(int[] nums) {Stack<Integer> st = new Stack<Integer>();
int len = nums.length;
int[] res = new int[len];
Arrays.fill(res,-1);
for(int i = 0;i < len * 2;i++){
int index = i % len;
while(!st.isEmpty() && nums[st.peek()] < nums[index]){res[st.pop()] = nums[index];
}
st.push(index);
}
return res;
}
}
正文完
发表至: Leetcode个人解题总结
2021-06-25