• 代码随想录算法训练营第23期day59|503.下一个更大元素II、42. 接雨水


     一、503.下一个更大元素II

    力扣题目链接

    可以不扩充nums,在遍历的过程中模拟走两边nums

    1. class Solution {
    2. public:
    3. vector<int> nextGreaterElements(vector<int>& nums) {
    4. vector<int> result(nums.size(), -1);
    5. if (nums.size() == 0) return result;
    6. stack<int> st;
    7. st.push(0);
    8. for (int i = 1; i < nums.size() * 2; i++) {
    9. // 模拟遍历两边nums,注意一下都是用i % nums.size()来操作
    10. if (nums[i % nums.size()] < nums[st.top()]) st.push(i % nums.size());
    11. else if (nums[i % nums.size()] == nums[st.top()]) st.push(i % nums.size());
    12. else {
    13. while (!st.empty() && nums[i % nums.size()] > nums[st.top()]) {
    14. result[st.top()] = nums[i % nums.size()];
    15. st.pop();
    16. }
    17. st.push(i % nums.size());
    18. }
    19. }
    20. return result;
    21. }
    22. };

    二、42. 接雨水

    力扣题目链接

    1)双指针法

    把每一个位置的左边最高高度记录在一个数组上(maxLeft),右边最高高度记录在一个数组上(maxRight),避免了重复计算。

    当前位置,左边的最高高度是前一个位置的左边最高高度和本高度的最大值

    即从左向右遍历:maxLeft[i] = max(height[i], maxLeft[i - 1]);

    从右向左遍历:maxRight[i] = max(height[i], maxRight[i + 1]);

    1. class Solution {
    2. public:
    3. int trap(vector<int>& height) {
    4. if (height.size() <= 2) return 0;
    5. vector<int> maxLeft(height.size(), 0);
    6. vector<int> maxRight(height.size(), 0);
    7. int size = maxRight.size();
    8. // 记录每个柱子左边柱子最大高度
    9. maxLeft[0] = height[0];
    10. for (int i = 1; i < size; i++) {
    11. maxLeft[i] = max(height[i], maxLeft[i - 1]);
    12. }
    13. // 记录每个柱子右边柱子最大高度
    14. maxRight[size - 1] = height[size - 1];
    15. for (int i = size - 2; i >= 0; i--) {
    16. maxRight[i] = max(height[i], maxRight[i + 1]);
    17. }
    18. // 求和
    19. int sum = 0;
    20. for (int i = 0; i < size; i++) {
    21. int count = min(maxLeft[i], maxRight[i]) - height[i];
    22. if (count > 0) sum += count;
    23. }
    24. return sum;
    25. }
    26. };

    2)单调栈解法 

    1. class Solution {
    2. public:
    3. int trap(vector<int>& height) {
    4. if (height.size() <= 2) return 0; // 可以不加
    5. stack<int> st; // 存着下标,计算的时候用下标对应的柱子高度
    6. st.push(0);
    7. int sum = 0;
    8. for (int i = 1; i < height.size(); i++) {
    9. if (height[i] < height[st.top()]) { // 情况一
    10. st.push(i);
    11. } if (height[i] == height[st.top()]) { // 情况二
    12. st.pop(); // 其实这一句可以不加,效果是一样的,但处理相同的情况的思路却变了。
    13. st.push(i);
    14. } else { // 情况三
    15. while (!st.empty() && height[i] > height[st.top()]) { // 注意这里是while
    16. int mid = st.top();
    17. st.pop();
    18. if (!st.empty()) {
    19. int h = min(height[st.top()], height[i]) - height[mid];
    20. int w = i - st.top() - 1; // 注意减一,只求中间宽度
    21. sum += h * w;
    22. }
    23. }
    24. st.push(i);
    25. }
    26. }
    27. return sum;
    28. }
    29. };

  • 相关阅读:
    百利天恒更新招股书:上半年收入约3亿元,持续加大研发投入
    校园跑腿小程序还受欢迎不?
    技术人创业:失败不是成功,但反思是
    浅谈spring的@Scheduled定时任务(演示)
    spring复习(第二天下午)(黑马版)
    搬家快递服务小程序的便利性
    1、Tomcat整体架构
    算法:JavaScript语言描述
    [C++ 网络协议] Windows中的线程同步
    记一次内部红队渗透——定位张三
  • 原文地址:https://blog.csdn.net/weixin_42179093/article/details/134517891