返回栈中最小元素

简介: 返回栈中最小元素

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

1)pop、push、getMin操作的时间复杂度都是O(1)

2)设计的栈类型可以使用现成的栈结构

package com.harrison.class02;
import java.util.Stack;
public class Code06_GetMinStack {
  public static class MyStack1{
    public Stack<Integer> stackData;
    public Stack<Integer> stackMin;
    public MyStack1() {
      stackData=new Stack<Integer>();
      stackMin=new Stack<Integer>();
    }
    public void push(int newNum) {
      if(stackMin.isEmpty()) {
        stackMin.push(newNum);
      }else if(newNum<=getMin()) {
        stackMin.push(newNum);
      }
      stackData.push(newNum);
    }
    public int pop() {
      if(stackData.isEmpty()) {
        throw new RuntimeException("栈空了!");
      }
      int value=stackData.pop();
      if(value==getMin()) {
        stackMin.pop();
      }
      return value;
    }
    public int getMin() {
      if(stackMin.isEmpty()) {
        throw new RuntimeException("栈空了");
      }
      return stackMin.peek();
    }
  }
  public static class MyStack2{
    private Stack<Integer> stackData;
    private Stack<Integer> stackMin;
    public MyStack2() {
      stackData=new Stack<Integer>();
      stackMin=new Stack<Integer>();
    }
    public void push(int newNum) {
      if(stackMin.isEmpty()) {
        stackMin.push(newNum);
      }else if(newNum<getMin()) {
        stackMin.push(newNum);
      }else {
        int newMin=stackMin.peek();
        stackMin.push(newMin);
      }
      stackData.push(newNum);
    }
    public int pop() {
      if(stackData.isEmpty()) {
        throw new RuntimeException("栈空了!");
      }
      this.stackMin.pop();
      return stackData.pop();
    }
    public int getMin() {
      if(stackMin.isEmpty()) {
        throw new RuntimeException("栈空了!");
      }
      return stackMin.peek();
    }
  }
  public static void main(String[] args) {
    MyStack1 stack1=new MyStack1();
    stack1.push(3);
    System.out.println(stack1.getMin());
    stack1.push(4);
    System.out.println(stack1.getMin());
    stack1.push(1);
    System.out.println(stack1.getMin());
    System.out.println(stack1.pop());
    System.out.println(stack1.getMin());
    System.out.println("======================");
    MyStack2 stack2=new MyStack2();
    stack2.push(3);
    System.out.println(stack2.getMin());
    stack2.push(4);
    System.out.println(stack2.getMin());
    stack2.push(1);
    System.out.println(stack2.getMin());
    System.out.println(stack2.pop());
    System.out.println(stack2.getMin());
  }
}

相关文章
|
20天前
|
C语言
【数据结构】栈和队列(c语言实现)(附源码)
本文介绍了栈和队列两种数据结构。栈是一种只能在一端进行插入和删除操作的线性表,遵循“先进后出”原则;队列则在一端插入、另一端删除,遵循“先进先出”原则。文章详细讲解了栈和队列的结构定义、方法声明及实现,并提供了完整的代码示例。栈和队列在实际应用中非常广泛,如二叉树的层序遍历和快速排序的非递归实现等。
103 9
|
11天前
|
存储 算法
非递归实现后序遍历时,如何避免栈溢出?
后序遍历的递归实现和非递归实现各有优缺点,在实际应用中需要根据具体的问题需求、二叉树的特点以及性能和空间的限制等因素来选择合适的实现方式。
19 1
|
14天前
|
存储 算法 Java
数据结构的栈
栈作为一种简单而高效的数据结构,在计算机科学和软件开发中有着广泛的应用。通过合理地使用栈,可以有效地解决许多与数据存储和操作相关的问题。
|
17天前
|
存储 JavaScript 前端开发
执行上下文和执行栈
执行上下文是JavaScript运行代码时的环境,每个执行上下文都有自己的变量对象、作用域链和this值。执行栈用于管理函数调用,每当调用一个函数,就会在栈中添加一个新的执行上下文。
|
19天前
|
存储
系统调用处理程序在内核栈中保存了哪些上下文信息?
【10月更文挑战第29天】系统调用处理程序在内核栈中保存的这些上下文信息对于保证系统调用的正确执行和用户程序的正常恢复至关重要。通过准确地保存和恢复这些信息,操作系统能够实现用户模式和内核模式之间的无缝切换,为用户程序提供稳定、可靠的系统服务。
46 4
|
23天前
|
算法 安全 NoSQL
2024重生之回溯数据结构与算法系列学习之栈和队列精题汇总(10)【无论是王道考研人还是IKUN都能包会的;不然别给我家鸽鸽丢脸好嘛?】
数据结构王道第3章之IKUN和I原达人之数据结构与算法系列学习栈与队列精题详解、数据结构、C++、排序算法、java、动态规划你个小黑子;这都学不会;能不能不要给我家鸽鸽丢脸啊~除了会黑我家鸽鸽还会干嘛?!!!
|
1月前
|
存储 算法 Java
Set接口及其主要实现类(如HashSet、TreeSet)如何通过特定数据结构和算法确保元素唯一性
Java Set因其“无重复”特性在集合框架中独树一帜。本文解析了Set接口及其主要实现类(如HashSet、TreeSet)如何通过特定数据结构和算法确保元素唯一性,并提供了最佳实践建议,包括选择合适的Set实现类和正确实现自定义对象的hashCode()与equals()方法。
33 4
|
1月前
数据结构(栈与列队)
数据结构(栈与列队)
20 1
|
1月前
|
存储 JavaScript 前端开发
为什么基础数据类型存放在栈中,而引用数据类型存放在堆中?
为什么基础数据类型存放在栈中,而引用数据类型存放在堆中?
71 1
|
1月前
【数据结构】-- 栈和队列
【数据结构】-- 栈和队列
17 0