C++ 向量库 - assign() 函数



描述

C++ 函数std::vector::assign() 通过替换旧值来为向量元素分配新值。如果需要,它会修改向量的尺寸。

如果发生内存分配,则由内部分配器分配内存。

声明

以下是来自 std::vector 头文件的 std::vector::assign() 函数的声明。

C++98

void assign (size_type n, const value_type& val);

C++11

void assign (size_type n, const value_type& val);

参数

  • n - 向量的尺寸。

  • val - 每个元素的值。

返回值

异常

此成员函数从不抛出异常。

时间复杂度

线性,即 O(n)

示例

以下示例演示了 std::vector::assign() 函数的使用。

#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;
}

让我们编译并运行以上程序,这将产生以下结果:

Initial size  = 0
Modified size = 5
100
100
100
100
100
vector.htm
广告