Answers for "how to slice vector in c++"

C++
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