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

首頁 > 學院 > 開發設計 > 正文

棧和隊列(二)

2019-11-08 01:56:00
字體:
來源:轉載
供稿:網友

由兩個棧實現隊列

import java.util.Stack;public class sAD02 { public Stack<Integer> stackPush; public Stack<Integer> stackPop; public sAD02(){ stackPush = new Stack<Integer>(); stackPop = new Stack<Integer>(); } public void add(int pushInt){ stackPush.push(pushInt); } public int poll(){ if(stackPop.empty() && stackPush.empty()){ throw new RuntimeException("Queue is empty"); }else if(stackPop.empty()){ while (!stackPush.empty()){ stackPop.push(stackPush.pop()); } } return stackPop.pop(); } public int peek(){ if(stackPop.empty() && stackPush.empty()){ throw new RuntimeException("Queue is empty"); }else if(stackPop.empty()){ while(! stackPush.empty()){ stackPop.push(stackPush.pop()); } } return stackPop.peek(); }}
發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 都兰县| 永清县| 芦溪县| 绥滨县| 仁布县| 富蕴县| 南充市| 合水县| 长垣县| 昭苏县| 义马市| 衡阳县| 青神县| 中江县| 深水埗区| 岐山县| 定兴县| 调兵山市| 镇江市| 寻乌县| 鱼台县| 汉寿县| 延津县| 汪清县| 合阳县| 垦利县| 河北区| 旺苍县| 景德镇市| 鸡泽县| 华坪县| 卢湾区| 历史| 澜沧| 兴国县| 徐汇区| 阿合奇县| 平凉市| 三台县| 奉节县| 株洲市|