0

これを LIFO-> 後入れ先出しキューにするにはどうすればよいですか? そうする簡単な方法はありますか?これは FIFO-> FIFO in first out キューです。

using namespace std;

int main(){
    queue<string> q;

    cout << "Pushing one two three four\n";
    q.push("one");
    q.push("two");
    q.push("three");
    q.push("four");

    cout << "Now, retrieve those values in FIFO order.\n";
    while(!q.empty()) {
        cout << "Popping ";
        cout << q.front() << "\n";
        q.pop();
    }
    cout << endl;

    return 0;
}
4

1 に答える 1