zoukankan      html  css  js  c++  java
  • std::copy使用方法

    推荐2个c++函数库,类定义的资料库:

    http://en.cppreference.com/w/cpp/algorithm/copy

    http://www.cplusplus.com/reference/algorithm/copy/?kw=copy

    ---------------------------------------------------------------------------------------------------------------

    Defined in header <algorithm>
    template< class InputIt, class OutputIt >
         OutputIt copy( InputIt first, InputIt last, OutputIt d_first );

    Copies the elements in the range, defined by [first, last), to another range beginning at d_first

    Parameters

    first, last

                Input iterators to the initial and final positions in a sequence to be copied. The range used is [first,last), which contains all the elements between first and last, including the element pointed by first but not the element pointed by last.

                c++中的区间几乎都是左开右闭的,包括一些类的构造函数,比如 int a[5] = { 1, 2, 3, 4, 5};  set<int> s(&a[0], &a[4]); s里只会插入{ 1,2,3,4 }这4个元素。

    d_first

                Output iterator to the initial position in the destination sequence.
                This shall not point to any element in the range [first,last).

    Return value

    An iterator to the end of the destination range where elements have been copied.

    Complexity

    Linear in the distance between first and last: Performs an assignment operation for each element in the range.

    Example

    The following code uses copy to both copy the contents of one vector to another and to display the resulting vector:

    #include <algorithm>
    #include <iostream>
    #include <vector>
    #include <iterator>
    #include <numeric>
     
    int main()
    {
        std::vector<int> from_vector(10);
        std::iota(from_vector.begin(), from_vector.end(), 0);
     
        std::vector<int> to_vector;
        std::copy(from_vector.begin(), from_vector.end(),
                  std::back_inserter(to_vector));
    // or, alternatively,
    //  std::vector<int> to_vector(from_vector.size());
    //  std::copy(from_vector.begin(), from_vector.end(), to_vector.begin());
    // either way is equivalent to
    //  std::vector<int> to_vector = from_vector;
     
        std::cout << "to_vector contains: ";
     
        std::copy(to_vector.begin(), to_vector.end(),
                  std::ostream_iterator<int>(std::cout, " "));
        std::cout << '\n';
    }

    Output:

    to_vector contains: 0 1 2 3 4 5 6 7 8 9
  • 相关阅读:
    NSDate相差8小时
    IOS 多播委托(GCDMulticastDelegate)
    点云、矢量、三维模型数据的平移
    mongodb集群搭建过程记录
    mongodb 使用常见问题汇总(主要是集群搭建)
    安装py3ditles中遇到的问题
    linux常见问题集锦
    Ubuntu18.04 + win10双系统下时间问题
    Frank Dellaert Slam Speech 20190708
    计算机系统基础学习笔记及博客
  • 原文地址:https://www.cnblogs.com/scw2901/p/4228880.html
Copyright © 2011-2022 走看看