Answers for "C++ slice vector"

C++
2

slice a vector c++

std::vector<int> v1 = {1, 2, 3};

v2 = std::vector<int>(v1.begin() + 1, v1.end());
// I'm Horrible Hyena
Posted by: Guest on October-29-2020
0

slice a vector c++

std::vector<int> v1 = {1, 2, 3};

v2 = std::vector<int>(v1.begin() + 1, v1.end());
Posted by: Guest on October-29-2020
0

how to slice vector in c++

vector<int> values = {35, 28, 34, 23};
  vector<int> res;
  // slice vector `values` from index 1 to the end
  // and assgin the result to `res`
  res.assign(values.begin() + 1, values.end());
  // equivalent
  vector<int> res1(values.begin() + 1, values.end());
Posted by: Guest on October-16-2021

Browse Popular Code Answers by Language