Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/codemistic/Data-Structures-and-Algorithms
/ print
Function
print
CPP/stl/Deque_Operations.cpp:5–13 ·
view source on GitHub ↗
Source
from the content-addressed store, hash-verified
3
using namespace std;
4
5
void print (const deque<int>& dq)
6
{
7
cout<<
"Deque Elements are:"
;
8
for (auto it=dq.begin();it!=dq.end();it++)
9
{
10
cout<<*it<<
" "
;
11
}
12
cout<<endl;
13
}
14
15
int main()
16
{
Callers
15
main
Function · 0.70
Python script to display ip address and host name.py
File · 0.50
circular_kadne.py
File · 0.50
Rabin-Karp.py
File · 0.50
recaman
Function · 0.50
sortUsingHash
Function · 0.50
inorder
Function · 0.50
minRange
Function · 0.50
findClosestNumberr.py
File · 0.50
5 recusrion problems.py
File · 0.50
Calculator.py
File · 0.50
kruskal_algo
Method · 0.50
Calls
no outgoing calls
Tested by
1
test_print
Function · 0.40