MCPcopy 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

3using namespace std;
4
5void 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
15int main()
16{

Callers 15

mainFunction · 0.70
circular_kadne.pyFile · 0.50
Rabin-Karp.pyFile · 0.50
recamanFunction · 0.50
sortUsingHashFunction · 0.50
inorderFunction · 0.50
minRangeFunction · 0.50
Calculator.pyFile · 0.50
kruskal_algoMethod · 0.50

Calls

no outgoing calls

Tested by 1

test_printFunction · 0.40