The C++ function std::vector::assign() assign new values to the vector elements by replacing old ones. It modifies size of vector if necessary.
If memory allocation happens allocation is allocated by internal allocator.
DeclarationFollowing is the declaration for std::vector::assign() function form std::vector header.
C++98void assign (size_type n, const value_type& val);C++11
void assign (size_type n, const value_type& val);Parameters
n − Size of vector.
val − Value for each element.
None
ExceptionsThis member function never throws exception.
Time complexityLinear i.e. O(n)
ExampleThe following example shows the usage of std::vector::assign() function.
#include <iostream> #include <vector> using namespace std; int main(void) { vector<int> v1; cout << "Initial size = " << v1.size() << endl; /* 5 integers with value = 100 */ v1.assign(5, 100); cout << "Modified size = " << v1.size() << endl; /* display vector values */ for (int i = 0; i < v1.size(); ++i) cout << v1[i] << endl; return 0; }
Let us compile and run the above program, this will produce the following result −
Initial size = 0 Modified size = 5 100 100 100 100 100
vector.htm
RetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.4