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

概述

第一种方式:


import java.util.Stack;
public class MyStack1 {
public static void main(String[] args) {
MyStack1Real myStack1Real = new MyStack1Real();
for (int i = 0; i < 10; i++) {
myStack1Real.push(i);
}
myStack1Real.push(-1);
System.out.println(myStack1Real.getMin());
}
}
class MyStack1Real {
private Stack<Integer> stackData;
private Stack<Integer> stackMin;
public MyStack1Real() {
this.stackData = new Stack<Integer>();
this.stackMin = new Stack<Integer>();
}
public void push(int newNum) {
if (stackMin.isEmpty()) {
stackMin.push(newNum);
} else if (newNum <= this.getMin()) {
stackMin.push(newNum);
}
stackData.push(newNum);
}
public int pop() {
if (this.stackData.peek() == this.stackMin.peek()) {
this.stackData.pop();
return this.stackMin.pop();
} else {
return this.stackMin.pop();
}
}
public int getMin() {
if (this.stackMin.isEmpty()) {
throw new RuntimeException("your stack is empty!");
} else {
return this.stackMin.peek();
}
}
}

第二种方式:

package stackAndQueue;
import java.util.Stack;
public class MyStack2 {
public static void main(String[] args) {
MyStack1Real myStack1Real = new MyStack1Real();
for (int i = 0; i < 10; i++) {
myStack1Real.push(i);
}
myStack1Real.push(-8);
System.out.println(myStack1Real.getMin());
}
}
class MyStack2Real {
private Stack<Integer> stackData;
private Stack<Integer> stackMin;
public MyStack2Real() {
this.stackData = new Stack<Integer>();
this.stackMin = new Stack<Integer>();
}
public void push(int newNum) {
if (this.stackMin.isEmpty()) {
this.stackData.push(newNum);
this.stackMin.push(newNum);
} else if (newNum <= this.getMin()) {
this.stackData.push(newNum);
this.stackMin.push(newNum);
} else {
this.stackData.push(newNum);
this.stackMin.push(this.stackMin.peek());
}
}
public int pop(int newNum) {
this.stackMin.pop();
return this.stackData.pop();
}
public int getMin() {
if (this.stackMin.isEmpty()) {
throw new RuntimeException("your stack is empty");
} else {
return stackMin.peek();
}
}
}


最后

以上就是精明墨镜为你收集整理的实现getMin功能的栈的全部内容,希望文章能够帮你解决实现getMin功能的栈所遇到的程序开发问题。

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

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

评论列表共有 0 条评论

立即
投稿
返回
顶部