It's very usefull.
Push , pop and top methods are very simple.
Following code is my sample
#include <iostream>
#include <stack>
using namespace std;
int main(void)
{
stack<int> datas;// It's that stack contents are dequeue.
datas.push(0x01);
datas.push(0x10);
while( !datas.empty() ){
cout << datas.top() << endl;
datas.pop();
}
return 0;
}
 


No comments:
Post a Comment