C ++ copies the content in a vector to the end of another vector and ends with the vector.

Source: Internet
Author: User

C ++ copies the content in a vector to the end of another vector and ends with the vector.

When using the vector container, We need to copy the content of a vector to the end of another vector. How can this problem be achieved?

Insert Method Using vector

Template <class InputIterator> void insert (iterator position, InputIterator first, InputIterator last );

Parameter description:

Position: the position where the element is inserted in the container. iteratior is a member type and is defined as a random access iterator type pointing to the element.

First, last: iterate specifies the element type. elements directed from first to last are inserted to the position of the container.

Code Testing

# Include <vector ># include <iostream> using namespace std; int main () {vector <int> a = {1, 2, 3 }; vector <int> B = {4, 5};. insert (. end (), B. begin (), B. end (); cout <"copy the content in B to the end of a:" <endl; for (auto it =. begin (); it! = A. end (); it ++) {cout <* it <"";} return 0 ;}

Run

 

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.