剑指offer---包含min函数的栈
Posted 双马尾是老公的方向盘
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了剑指offer---包含min函数的栈相关的知识,希望对你有一定的参考价值。
class Solution { public: void push(int value) { stack1.push(value); } void pop() { stack1.pop(); } int top() { return stack1.top(); } int min() { //用一另一个栈存放读入的数据 int minNum=0; if(!stack1.empty()) { minNum =stack1.top(); stack2.push(stack1.top()); stack1.pop(); } while (!stack1.empty()) { if (minNum > stack1.top()) { minNum = stack1.top(); stack2.push(stack1.top()); stack1.pop(); } else { stack2.push(stack1.top()); stack1.pop(); } } while(!stack2.empty()) { stack1.push(stack2.top()); stack2.pop(); } return minNum; } private: stack<int> stack1; stack<int> stack2; };
以上是关于剑指offer---包含min函数的栈的主要内容,如果未能解决你的问题,请参考以下文章