我是靠谱客的博主 矮小黑米,最近开发中收集的这篇文章主要介绍GetMin功能的栈,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述


设计一个特殊的栈,在实现栈的基本功能的基础上,再实现返回栈中最小元素的操作

学习算法和数据结构中,买了本书,把书上的题目练习一下

本题难度:士

要求pop、push、getMin操作的时间复杂度为O(1)

代码如下

package stackgame;
import java.util.Stack;
public class Stack1 {
private Stack<Integer> stackData;
private Stack<Integer> stackMin;
public Stack1() {
this.stackData=new Stack<Integer>();
this.stackMin=new Stack<Integer>();
}
public void push(int newNum) {
if(this.stackMin.isEmpty())
this.stackMin.push(newNum);
else if(newNum<=this.getMin())
this.stackMin.push(newNum);
this.stackData.push(newNum);
}
public int pop() {
if(this.stackData.isEmpty()) {
throw new RuntimeException("Your stack is Empty.");
}
int value=this.stackData.pop();
if (value == getMin()) {
stackMin.pop();
}
return value;
}
public int getMin() {
if(this.stackMin.isEmpty()) {
throw new RuntimeException("Your stack is Empty.");
}
return this.stackMin.peek();
}
public static void main(String[] args) {
Stack1 sc=new Stack1();
sc.push(5);
sc.push(3);
sc.push(2);
sc.push(4);
sc.push(8);
System.out.println(sc.getMin());
System.out.print(sc.stackMin.pop()+" ");
System.out.print(sc.stackMin.pop()+" ");
System.out.println(sc.stackMin.pop()+" ");
System.out.print(sc.stackData.pop()+" ");
System.out.print(sc.stackData.pop()+" ");
System.out.print(sc.stackData.pop()+" ");
System.out.print(sc.stackData.pop()+" ");
System.out.print(sc.stackData.pop()+" ");
}
}

结果:

2
2 3 5
8 4 2 3 5 

最后

以上就是矮小黑米为你收集整理的GetMin功能的栈的全部内容,希望文章能够帮你解决GetMin功能的栈所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(47)

评论列表共有 0 条评论

立即
投稿
返回
顶部