标签:
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();
}
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();
}
版权声明:本文为博主原创文章,未经博主允许不得转载。
标签:
原文地址:http://blog.csdn.net/richard_rufeng/article/details/46759311