C++ Forward_list 库 - resize_value() 函数


描述

C++ 函数std::forward_list::resize_value()更改forward_list 的大小。如果n小于当前大小,则多余的元素将被销毁。如果n大于当前容器大小,则新元素将插入到列表末尾。如果指定了val ,则新元素将以val开头。

宣言

以下是 std::forward_list::resize_value() 函数形式 std::forward_list 标头的声明。

C++11

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

参数

  • n - 要插入的元素数。

  • val - 容器元素的初始值。

返回值

没有任何

例外情况

如果重新分配失败,则会抛出bad_alloc异常。

时间复杂度

线性即 O(n)

例子

以下示例显示了 std::forward_list::resize_value() 函数的用法。

#include <iostream>
#include <forward_list>

using namespace std;

int main(void) {

   forward_list<int> fl;

   fl.resize(5, 10);

   cout << "List contents after resize operation" << endl;

   for (auto it = fl.begin(); it != fl.end(); ++it)
      cout << *it << endl;

   return 0;
}

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

List contents after resize operation
10
10
10
10
10
转发列表.htm