MCPcopy Create free account
hub / github.com/SuprDewd/CompetitiveProgramming / pop

Method pop

code/data-structures/monotonic_queue.cpp:8–8  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

6 int top() { return S.top(); }
7 int mn() { return M.top(); }
8 void pop() { S.pop(); M.pop(); }
9 bool empty() { return S.empty(); } };
10struct min_queue {
11 min_stack inp, outp;

Callers 2

fixMethod · 0.45
popMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected