【程序员面试金典】03.03. 堆盘子

1.题目

堆盘子。设想有一堆盘子,堆太高可能会倒下来。因此,在现实生活中,盘子堆到一定高度时,我们就会另外堆一堆盘子。请实现数据结构SetOfStacks,模拟这种行为。SetOfStacks应该由多个栈组成,并且在前一个栈填满时新建一个栈。此外,SetOfStacks.push()和SetOfStacks.pop()应该与普通栈的操作方法相同(也就是说,pop()返回的值,应该跟只有一个栈时的情况一样)。 进阶:实现一个popAt(int index)方法,根据指定的子栈,执行pop操作。

当某个栈为空时,应当删除该栈。当栈中没有元素或不存在该栈时,pop,popAt 应返回 -1.

示例1:

 输入:
["StackOfPlates", "push", "push", "popAt", "pop", "pop"]
[[1], [1], [2], [1], [], []]
 输出:
[null, null, null, 2, 1, -1]
示例2:

 输入:
["StackOfPlates", "push", "push", "push", "popAt", "popAt", "popAt"]
[[2], [1], [2], [3], [0], [0], [0]]
 输出:
[null, null, null, null, 2, 1, 3]

来源:力扣(LeetCode)
链接:https://leetcode-cn.com/problems/stack-of-plates-lcci
著作权归领扣网络所有。商业转载请联系官方授权,非商业转载请注明出处。

2.题解

思路:利用stl标准库的vector和stack直接进行模拟,注意边界条件即可;

class StackOfPlates
{
private:
    int size;
    vector<stack<int>> stack_sets;
public:
    StackOfPlates(int cap)
    {
        size=cap;
    }

    void push(int val)
    {
        if(size==0)
            return;
        if(stack_sets.size()==0||stack_sets[stack_sets.size()-1].size()==size)
        {
            stack<int> tmp;
            tmp.push(val);
            stack_sets.push_back(tmp);
        }
        else
        {
            stack_sets[stack_sets.size()-1].push(val);
        }
    }

    int pop()
    {
        if(stack_sets.size()==0)
            return -1;
        int ret=stack_sets[stack_sets.size()-1].top();
        stack_sets[stack_sets.size()-1].pop();
        if(stack_sets[stack_sets.size()-1].empty())
        {
            auto it=stack_sets.end();
            it--;
            stack_sets.erase(it);
        }
        return ret;
    }

    int popAt(int index)
    {
        if(stack_sets.size()==0||index<0||index>=stack_sets.size())
            return -1;
        int ret=stack_sets[index].top();
        stack_sets[index].pop();
        if(stack_sets[index].empty())
        {
            stack_sets.erase(stack_sets.begin()+index);
        }
        return ret;
    }
};

/**
 * Your StackOfPlates object will be instantiated and called as such:
 * StackOfPlates* obj = new StackOfPlates(cap);
 * obj->push(val);
 * int param_2 = obj->pop();
 * int param_3 = obj->popAt(index);
 */

来源:https://leetcode-cn.com/problems/stack-of-plates-lcci/solution/xiao-bai-jie-fa-by-qiong-bxiao-nie/

发布了13 篇原创文章 · 获赞 4 · 访问量 539

猜你喜欢

转载自blog.csdn.net/weixin_44556968/article/details/105426037