假设我有一个整数队列,
#include <iostream>
#include <queue>
using namespace std;
int main() {
int firstValToBePushed = 1;
queue<int> CheckoutLine;
CheckoutLine.push(firstValeToBePushed);
cout << CheckoutLine.front();
return 0;
}
我怎样才能使用包含指向整数的指针的队列来做本质上相同的事情,而不是像上面当前所做的那样。我计划制作一个循环来产生多个值,但这只是一个更简单的例子。
谢谢,