View on GitHub

CC

CC practice and cheat sheets

Queues

#include <queue>

std::queue<int> q;

q.push(10);
q.push(20);
q.push(5);

q.top(); //10
q.pop();