c++下推栈 | #接雨水问题#

接雨水问题

http://www.nowcoder.com/practice/31c1aed01b394f0b8b7734de0324e00f

因为要获取栈底元素大小,STL没有相关函数,则自定义了一个栈,增加getFirst函数。

private:
    int size;
    int* s;
    int index;
public:
    void init(int n) {
        size = n;
        s = new int[n + 1];
        index = 0;
    }
    
    void push(int item) {
        s[index++] = item;
    }
    
    void pop() {
        if (index > 0) {
            index--;
        }
    }
    
    int top() {
        return s[index - 1];
    }
    
    bool empty() {
        return index == 0;
    }
    
    int getFirst() {
        return s[0];
    }
};

class Solution {
public:
    /**
     * max water
     * @param arr int整型vector the array
     * @return long长整型
     */
    long long maxWater(vector<int>& arr) {
        MyStack s;
        s.init(arr.size());
        long long ans = 0;
        for (int item: arr) {
            if (s.empty() == true) {
                s.push(item);
                continue;
            }
            
            if (item <= s.top()) {
                s.push(item);
            } else {
                int count = 0;
                int hight = min(item, s.getFirst());
                while (!s.empty() && s.top() < item) {
                    ans += (hight - s.top());
                    s.pop();
                    count++;
                }
                
                if (s.empty() == true) {
                    s.push(item);
                } else {
                    while (count-- >= 0) {
                        s.push(item);
                    }
                }
            }
        }
        
        return ans;
    }
};
全部评论

相关推荐

点赞 评论 收藏
分享
offer多多的六边形战士很无语:看了你的博客,感觉挺不错的,可以把你的访问量和粉丝数在简历里提一下,闪光点(仅个人意见)
点赞 评论 收藏
分享
评论
1
收藏
分享
牛客网
牛客企业服务