程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> C語言 >> C++ >> 關於C++ >> c++:實現一個棧,包括入棧、出棧函數以及返回最小值,要求時間復雜度為O(1)

c++:實現一個棧,包括入棧、出棧函數以及返回最小值,要求時間復雜度為O(1)

編輯:關於C++
MinStakc.cpp
#include<iostream>
using namespace std;
#include<stack>
template<class T>
class Stack{
public:
 void Push(const T& x){                       //入棧
  _stack.push(x);
  if (_minstack.empty())
   _minstack.push(x);
  else{
   _minstack.push((_minstack.top() > x )? x : _minstack.top());
  }
 }
 void Pop(){            //出棧
  _stack.pop();
  _minstack.pop();
 }
 T GetMin(){             //棧的最小值
  cout << _minstack.top() << endl;
  return _minstack.top();
 }
private:
 stack<T> _stack;
 stack<T> _minstack;
};
void test(){
 Stack<int> s;
 s.Push(1);
 s.Push(2);
 s.Push(5);
 s.Push(7);
 s.Push(8);
 s.GetMin();
 s.Pop();
 s.GetMin();
 s.Pop();
 s.GetMin();
 s.Pop();
}
int main(){
 test();
 return 0;
}

 

 
  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved