C++-std::iota

2022/6/1 1:22:36

本文主要是介绍C++-std::iota,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

1、功能

用一个从value递增的数列给[first, last)的容器赋值

2、实例

#include <iostream>
#include <vector>
#include <numeric>

int main()
{
    std::vector<int> nums(10);

    for (int i : nums) {
        std::cout << i << "\t";
    }
    std::cout << std::endl;

    std::iota(nums.begin(), nums.end(), 5); // fill nums with 5, 6, 7, 8...

    for (int i : nums) {
        std::cout << i << "\t";
    }
    std::cout << std::endl;

    system("pause");
    return 0;
}

打印:

0       0       0       0       0       0       0       0       0       0
5       6       7       8       9       10      11      12      13      14

参考:https://www.jianshu.com/p/ffdb4c681392



这篇关于C++-std::iota的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程