国产探花免费观看_亚洲丰满少妇自慰呻吟_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ā)表
主站蜘蛛池模板: 奇台县| 乌兰县| 徐水县| 盐池县| 丹棱县| 德化县| 舒城县| 黄浦区| 禹州市| 拉萨市| 安庆市| 吴堡县| 苍山县| 永兴县| 夹江县| 巴中市| 柳河县| 泗阳县| 石景山区| 宜兴市| 南开区| 枣阳市| 合水县| 奉新县| 申扎县| 体育| 文登市| 广南县| 临西县| 吴堡县| 宣汉县| 寿光市| 苍梧县| 汝阳县| 娱乐| 周宁县| 都兰县| 堆龙德庆县| 陆良县| 滁州市| 徐汇区|