|
|
Position in the vector where the new elements are inserted. |
v2[number-1]
. That is entirely separate vector from the v1
. It might have been created by copy construction from v1
, but that is all.v2[number-1].insert( v2[number-1].begin() + location, element );
|
|