1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49
| 请你设计一个支持下述操作的栈。
实现自定义栈类 CustomStack :
CustomStack(int maxSize):用 maxSize 初始化对象,maxSize 是栈中最多能容纳的元素数量
栈在增长到 maxSize 之后则不支持 push 操作。
void push(int x):如果栈还未增长到 maxSize ,就将 x 添加到栈顶。
int pop():弹出栈顶元素,并返回栈顶的值,或栈为空时返回 -1 。
void increment(int k, int val):栈底的 k 个元素的值都增加 val
如果栈中元素总数小于 k ,则栈中的所有元素都增加 val 。
示例:
输入: ["CustomStack","push","push","push", "push","push","increment","increment", "pop","pop","pop","pop"] [[3],[1],[2],[2],[3],[4],[5,100],[2,100],[],[],[],[]] 输出: [null,null,null,null,null,null,null,null,2,103,202,201] 解释: CustomStack customStack = new CustomStack(3); customStack.push(1); customStack.push(2); customStack.pop(); customStack.push(2); customStack.push(3); customStack.push(4); customStack.increment(5, 100); customStack.increment(2, 100); customStack.pop(); customStack.pop(); customStack.pop(); customStack.pop();
提示:
1 <= maxSize <= 1000 1 <= x <= 1000 1 <= k <= 1000 0 <= val <= 100 每种方法 increment,push 以及 pop 分别最多调用 1000 次
|