国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 學(xué)院 > 開發(fā)設(shè)計(jì) > 正文

不得已一 維護(hù)一個(gè)棧并維護(hù)棧的最小元素getMin

2019-11-14 10:31:06
字體:
供稿:網(wǎng)友

github:https://github.com/cbamls 歡迎加入 (java)全國各校IT精英 QQ群號(hào): 467123855

package com.offer.chapter1;import java.util.Stack;/** * CopyRright (c)2014-2016 Haerbin Hearglobal Co.,Ltd * PRoject: demo * Comments: * Author:cbam * Create Date:2017/2/4 * Modified By: * Modified Date: * Modified Reason: */public class Problem_01_MyStack1 { private Stack<Integer> stackData; private Stack<Integer> stackMin; public Problem_01_MyStack1() { this.stackData = new Stack<>(); this.stackMin = new Stack<>(); } public int getMin() { if(this.stackMin.isEmpty()) { throw new RuntimeException("Your stack is empty"); } return this.stackMin.peek(); } 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 == this.getMin()) { this.stackMin.pop(); } return value; }}
上一篇:0010 繼承

下一篇:洛谷 P2424 約數(shù)和

發(fā)表評(píng)論 共有條評(píng)論
用戶名: 密碼:
驗(yàn)證碼: 匿名發(fā)表
主站蜘蛛池模板: 德格县| 维西| 峨边| 南充市| 阿巴嘎旗| 霍林郭勒市| 金坛市| 茂名市| 德清县| 武邑县| 新丰县| 乌审旗| 定兴县| 武功县| 舒城县| 彰化县| 从化市| 五常市| 昌江| 专栏| 大英县| 赫章县| 渑池县| 莲花县| 绥江县| 阿克| 万盛区| 繁峙县| 沈阳市| 温州市| 上饶县| 天全县| 额敏县| 雷波县| 偃师市| 灵台县| 准格尔旗| 安图县| 安平县| 乳山市| 郎溪县|