首页 > 代码库 > 实现stack 加上·getMin功能 时间复杂度为O(n)
实现stack 加上·getMin功能 时间复杂度为O(n)
package com.hzins.suanfa; import java.util.Stack; /** * 实现stack 加上·getMin功能 时间复杂度为O(n) * @author Administrator * */ public class GetMinStack { private Stack<Integer> stackData; private Stack<Integer> stackMin; public GetMinStack(){ this.stackData = http://www.mamicode.com/new Stack<Integer>(); this.stackMin = new Stack<Integer>(); } public void push(int newNum){ if(this.stackMin.isEmpty()){ stackMin.push(newNum); }else if(newNum <this.getMin()){ stackMin.push(newNum); }else{ stackMin.push(this.getMin()); } stackData.push(newNum); } public int pop(){ if(stackData.isEmpty()){ throw new RuntimeException("Your stack is empty"); } stackMin.pop(); return stackData.pop(); } public int getMin(){ if(this.stackMin.isEmpty()){ throw new RuntimeException("Your stack is empty"); } return this.stackMin.peek(); } }
实现stack 加上·getMin功能 时间复杂度为O(n)
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。