使用C++标准模板库STL,编写程序声明字符队列,插入5个元素,进队列,在依次取出并显示出来
时间: 2023-10-07 13:14:12 浏览: 108
使用C++标准模板库(STL)
以下是使用C++ STL实现字符队列的代码:
```cpp
#include <iostream>
#include <queue>
int main()
{
std::queue<char> myQueue;
char element;
// 插入5个元素进队列
for (int i = 0; i < 5; ++i)
{
std::cout << "请输入一个字符:";
std::cin >> element;
myQueue.push(element);
}
// 依次取出并显示队列中的元素
std::cout << "队列中的元素为:";
while (!myQueue.empty())
{
std::cout << myQueue.front() << " ";
myQueue.pop();
}
return 0;
}
```
运行代码,输入5个字符,程序会将它们插入到队列中,并依次取出并显示队列中的元素。
阅读全文