首页 > 解决方案 > 如何在带有 X 个元素的 std::vector 中从 p 中提取 n 个元素

问题描述

我有一个包含 X 元素的向量,如何从向量中从 p(示例中为 6)中提取 n 个元素(下例中为 3)?这是我的做法。

//vector<int> a;
std::vector<int> a {10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22,
                       23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35};

int X = a.size();

// code to extract 3 elements of 6 until the end of the vector
for (int i=0; i< a.size(); i+=6)
{

        if (i >= a.size())
        {
            break;
        }
        else
        {
            sub_indices.push_back(i);
        }

        if ( (i+1) >= a.size())
        {
            break;
        }
        else
        {
            sub_indices.push_back(i+1);
        }

        if ((i+2) >= a.size())
        {
            break;
        }
        else {
            sub_indices.push_back(i+2);
        }
}

显示结果将输出:

10 11 12 (drop three elements) 16 17 18 (drop three elements) 22 23 24  (drop three elements) 28 29 30 (drop three elements) 34 35

我是这样做的,但谁能告诉我一个更有效的方法?

标签: c++algorithmc++11cluster-analysisstdvector

解决方案


这是解决方案:

#include <vector>
#include <iostream>

int main () {

  // Better to initilize the vector like this instead of using multiple push_back
  std::vector<int> a;
  for (int i=10; i<36; ++i)
    a.push_back (i);

  // Here is another method to initilize your vector:
//   std::vector<int> a {10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22,
//                       23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35};

  // Here you loop over all elements and only select the three first elements
  // of every six elements:
  for (int i=0; i<a.size(); ++i) 
    if (i%6 < 3)
      std::cout << a[i] << std::endl;

  return 0;
}

% 运算符给出两个 int 值相除的余数。


推荐阅读