Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/Vishruth-S/CompetitiveCode
/ dequeue
Method
dequeue
GeeksForGeeks/StackUsingQueus/solution.cpp:34–44 ·
view source on GitHub ↗
Source
from the content-addressed store, hash-verified
32
}
33
34
int dequeue()
35
{
36
// int x;
37
// while(!q1.empty())
38
// {
39
// x = q1.front();
40
// q1.pop();
41
// }
42
// return x;
43
return q1.back();
44
}
45
};
46
47
int main()
Callers
1
main
Function · 0.45
Calls
no outgoing calls
Tested by
no test coverage detected