题解 | #包含min函数的栈#

包含min函数的栈

http://www.nowcoder.com/practice/4c776177d2c04c2494f2555c9fcc1e49

let minValue = 10000; let stack =[] let helper =[] function push(node) { // write code here stack.push(node); if (node<=minValue){ minValue = node; helper.push(node) }else{ helper.push(helper[helper.length-1]) } } function pop() { // write code here helper.pop() return stack.pop() } function top() { // write code here return stack[ stack.length -1] } function min() { // write code here return helper[helper.length -1] } module.exports = { push : push, pop : pop, top : top, min : min };

全部评论

相关推荐

点赞 评论 收藏
分享
11-01 20:03
已编辑
门头沟学院 算法工程师
Amazarashi66:这种也是幸存者偏差了,拿不到这个价的才是大多数
点赞 评论 收藏
分享
牛客963010790号:为什么还要收藏
点赞 评论 收藏
分享
点赞 收藏 评论
分享
牛客网
牛客企业服务