MCPcopy Create free account
hub / github.com/codemistic/Data-Structures-and-Algorithms / show_list

Function show_list

graph/code2.cpp:13–24  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

11}
12
13void show_list(vector<int> vec[], int list_size)
14{
15 for (int i = 0; i < list_size; i++)
16 {
17 cout << i << " --> ";
18 for (int j = 0; j < vec[i].size(); j++)
19 {
20 cout << vec[i][j] << " ";
21 }
22 cout << endl;
23 }
24}
25
26int main()
27{

Callers 1

mainFunction · 0.85

Calls 1

sizeMethod · 0.45

Tested by

no test coverage detected