Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Buy a domain name - Register cheap domain names from $0.99 - Namecheap

Scalable Hosting That Grows With You

Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Semrush - keyword research tool

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

39,885 questions

51,811 answers

573 users

How to move elements from one vector to another in C++

2 Answers

0 votes
#include <iostream>    
#include <vector> 

void printVector(std::vector<std::string> const &v) {
    for (auto const &s: v) {
        std::cout << s << " ";
    }
}

int main () {
    std::vector<std::string> vec1 = {"c++", "c", "c#", "java", "python"};
    std::vector<std::string> vec2(3);

    std::move(vec1.begin(), vec1.begin() + 3, vec2.begin());

    std::cout << "\n" << "vec1 size " << vec1.size() << "\n";
    printVector(vec1);
    
    std::cout << "\n" << "vec2 size " << vec2.size() << "\n";
    printVector(vec2);
}
  
  
 
  
  
/*
run:
  
vec1 size 5
   java python 
vec2 size 3
c++ c c# 
  
*/

 



answered Nov 25, 2022 by avibootz
0 votes
#include <iostream>    
#include <vector> 

void printVector(std::vector<std::string> const &v) {
    for (auto const &s: v) {
        std::cout << s << " ";
    }
}

int main () {
    std::vector<std::string> vec1 = {"c++", "c", "c#", "java", "python"};
    std::vector<std::string> vec2(3);

    std::move(vec1.begin(), vec1.begin() + 3, vec2.begin());
    
    vec1.erase(vec1.begin(), vec1.begin() + 3);

    std::cout << "\n" << "vec1 size " << vec1.size() << "\n";
    printVector(vec1);
    
    std::cout << "\n" << "vec2 size " << vec2.size() << "\n";
    printVector(vec2);
}
  
  
 
  
  
/*
run:
  
vec1 size 2
java python 
vec2 size 3
c++ c c# 
  
*/

 



answered Nov 25, 2022 by avibootz

Related questions

2 answers 223 views
223 views asked Apr 28, 2018 by avibootz
3 answers 250 views
1 answer 42 views
1 answer 210 views
...