剑指offer(20)包含min函数的栈
Posted 3yleaves
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了剑指offer(20)包含min函数的栈相关的知识,希望对你有一定的参考价值。
题目描述:
定义栈的数据结构,请在该类型中实现一个能够得到栈中所含最小元素的min函数(时间复杂度应为O(1))。
解题代码:
var stack = [];
function push(node)
{
// write code here
stack.push(node);
}
function pop()
{
// write code here
return stack.pop();
}
function top()
{
// write code here
return stack.length == 0 ? null : stack[0];
}
function min()
{
// write code here
return Math.min.apply(null,stack);
}
以上是关于剑指offer(20)包含min函数的栈的主要内容,如果未能解决你的问题,请参考以下文章