码迷,mamicode.com
首页 > 其他好文 > 详细

stack和queue常用方法

时间:2015-07-05 09:35:20      阅读:288      评论:0      收藏:0      [点我收藏+]

标签:

stack常用方法

empty() 是否为空
size() 元素个数
pop() 删除栈顶元素
top() 返回栈顶元素的值
push() 增加元素

stack<string> st;
   st.push("hello");
   st.push("richard");
   st.push("yang");
   cout<<"the stack size is "<<st.size()<<endl;
   while(!st.empty()){
     cout<<st.top()<<endl;
     st.pop();
   }

queue常用方法

empty() 是否为空
size() 元素个数
pop() 删除栈顶元素
top() 返回队头元素的值
push() 增加元素
front()返回队头元素的值

 queue<string> que;
  que.push("hello");
  que.push("richard");
  que.push("yang");
  cout<<"the size of queue is "<<que.size()<<endl;
  while(!que.empty()) {
    cout<<que.front()<<endl;
    cout<<que.back()<<endl;
    que.pop();
  }

版权声明:本文为博主原创文章,未经博主允许不得转载。

stack和queue常用方法

标签:

原文地址:http://blog.csdn.net/richard_rufeng/article/details/46759311

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!