leetcode_155_Min Stack,leetcode_155_min

來源:互聯網
上載者:User

leetcode_155_Min Stack,leetcode_155_min

麻煩各位朋友幫忙頂一下增加人氣,如有錯誤或疑問請留言糾正,謝謝

Min Stack

Design a stack that supports push, pop, top, and retrieving the minimum element in constant time.

push(x) -- Push element x onto stack.
pop() -- Removes the element on top of the stack.
top() -- Get the top element.
getMin() -- Retrieve the minimum element in the stack.


//vs2012測試代碼//相比傳統stack(記為stk),為了記錄最小值,需要再開一個最小值棧min。//需要注意的是:重複出現的最小值必須重複進min,不然出stk的時候,min可能會為空白出錯#include<iostream>#include<stack>using namespace std;class MinStack {stack<int> min;stack<int> temp;public:    void push(int x) {temp.push(x);if( min.empty() || x<=min.top() )min.push(x);    }    void pop() {if( temp.top()==min.top() ){temp.pop();min.pop();}elsetemp.pop();    }    int top() {return temp.top();    }    int getMin() {return min.top();    }};int main(){MinStack lin;for(int i=0; i<5; i++){int x;cin>>x;lin.push(x);}cout<<lin.getMin()<<endl;}

//方法一:自測Accepted//相比傳統stack(記為stk),為了記錄最小值,需要再開一個最小值棧min。//需要注意的是:重複出現的最小值必須重複進min,不然出stk的時候,min可能會為空白出錯class MinStack {stack<int> min;stack<int> temp;public:    void push(int x) {temp.push(x);if( min.empty() || x<=min.top() )min.push(x);    }    void pop() {if( temp.top()==min.top() ){temp.pop();min.pop();}elsetemp.pop();    }    int top() {return temp.top();    }    int getMin() {return min.top();    }};


聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.