包含min函数的栈
Posted fzuhyj
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了包含min函数的栈相关的知识,希望对你有一定的参考价值。
定义栈的数据结构,请在该类型中实现一个能够得到栈中所含最小元素的min函数(时间复杂度应为O(1))。
首先该类必须能实现栈的正常功能,其次再实现min函数
import java.util.Stack; public class Solution { Stack<Integer> s = new Stack<Integer>(); //实现该类的栈功能 Stack<Integer> m = new Stack<Integer>(); //栈顶保存最小的数,如果node比栈顶大,复制一个栈顶,否则,加入node ; public void push(int node) { s.push(node); if(m.isEmpty() || m.peek()>=node){ m.push(node); }else { m.push(m.peek()); } } public void pop() { s.pop(); m.pop(); } public int top() { return s.peek(); } public int min() { return m.peek(); } }
以上是关于包含min函数的栈的主要内容,如果未能解决你的问题,请参考以下文章