包含min函数的栈-剑指Offer
Posted RosenDing
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了包含min函数的栈-剑指Offer相关的知识,希望对你有一定的参考价值。
包含min函数的栈
题目描述
定义栈的数据结构,请在该类型中实现一个能够得到栈最小元素的min函数
思路
- 使用一个辅助栈,跟踪原始栈中每个元素在栈口时的该栈的最小值
代码
import java.util.Stack;
public class Solution {
Stack<Integer> s_data = new Stack();
Stack<Integer> s_min = new Stack();
public void push(int node) {
s_data.push(node);
if (s_min.empty() || node < s_min.peek()) {
s_min.push(node);
} else {
s_min.push(s_min.peek());
}
}
public void pop() {
if (!s_data.empty()) {
s_data.pop();
}
if (!s_min.empty()) {
s_min.pop();
}
}
public int top() {
return s_data.peek();
}
public int min() {
return s_min.peek();
}
}
以上是关于包含min函数的栈-剑指Offer的主要内容,如果未能解决你的问题,请参考以下文章