如何将输入的字符串存入deque容器
时间: 2023-06-03 07:04:31 浏览: 122
使用java处理字符串公式运算的方法
5星 · 资源好评率100%
您可以使用STL中的deque容器,通过deque的push_back()函数将输入的字符串存储到队列的尾部。示例代码如下:
```c++
#include <iostream>
#include <deque>
#include <string>
using namespace std;
int main() {
deque<string> dq;
string input;
while (getline(cin, input)) {
dq.push_back(input);
}
return 0;
}
```
阅读全文