Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/EricPengShuai/Interview
/ showVector
Function
showVector
STL/vector.cpp:6–13 ·
view source on GitHub ↗
Source
from the content-addressed store, hash-verified
4
using namespace std;
5
6
void showVector(vector<int> &vt)
7
{
8
printf(
"%ld elements: "
, vt.size());
9
for (int item : vt) {
10
cout << item <<
' '
;
11
}
12
cout << endl;
13
}
14
15
int main()
16
{
Callers
1
main
Function · 0.85
Calls
1
size
Method · 0.45
Tested by
no test coverage detected