<bdo id='G8I2J'></bdo><ul id='G8I2J'></ul>
      <legend id='G8I2J'><style id='G8I2J'><dir id='G8I2J'><q id='G8I2J'></q></dir></style></legend>

      1. <small id='G8I2J'></small><noframes id='G8I2J'>

        <i id='G8I2J'><tr id='G8I2J'><dt id='G8I2J'><q id='G8I2J'><span id='G8I2J'><b id='G8I2J'><form id='G8I2J'><ins id='G8I2J'></ins><ul id='G8I2J'></ul><sub id='G8I2J'></sub></form><legend id='G8I2J'></legend><bdo id='G8I2J'><pre id='G8I2J'><center id='G8I2J'></center></pre></bdo></b><th id='G8I2J'></th></span></q></dt></tr></i><div id='G8I2J'><tfoot id='G8I2J'></tfoot><dl id='G8I2J'><fieldset id='G8I2J'></fieldset></dl></div>

      2. <tfoot id='G8I2J'></tfoot>

        获取 STL 向量中大于某个值的元素的所有位置

        时间:2023-10-07

      3. <legend id='KgIoM'><style id='KgIoM'><dir id='KgIoM'><q id='KgIoM'></q></dir></style></legend>

            <tfoot id='KgIoM'></tfoot>
          1. <small id='KgIoM'></small><noframes id='KgIoM'>

                <tbody id='KgIoM'></tbody>
              <i id='KgIoM'><tr id='KgIoM'><dt id='KgIoM'><q id='KgIoM'><span id='KgIoM'><b id='KgIoM'><form id='KgIoM'><ins id='KgIoM'></ins><ul id='KgIoM'></ul><sub id='KgIoM'></sub></form><legend id='KgIoM'></legend><bdo id='KgIoM'><pre id='KgIoM'><center id='KgIoM'></center></pre></bdo></b><th id='KgIoM'></th></span></q></dt></tr></i><div id='KgIoM'><tfoot id='KgIoM'></tfoot><dl id='KgIoM'><fieldset id='KgIoM'></fieldset></dl></div>
                • <bdo id='KgIoM'></bdo><ul id='KgIoM'></ul>
                  本文介绍了获取 STL 向量中大于某个值的元素的所有位置的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

                  问题描述

                  我想知道如何找到验证特定条件(例如大于)的元素的索引位置.例如,如果我有一个 int 值向量

                  vectorⅤ;

                  V 包含值 3 2 5 8 2 1 10 4 7

                  并且我想获取大于 5 的元素的所有 索引位置.我知道 std::find_if 但根据文档,它只找到满足条件的第一个元素.

                  解决方案

                  Loop std::find_if,从上次停止的地方开始.

                  示例(查看效果):

                  std::vector结果;auto it = std::find_if(std::begin(v), std::end(v), [](int i){return i > 5;});而(它!= std::end(v)){results.emplace_back(std::distance(std::begin(v), it));it = std::find_if(std::next(it), std::end(v), [](int i){return i > 5;});}

                  首先我们用第一个结果设置迭代器.如果没有找到,while 循环永远不会执行.否则,存储索引位置(std::distance 基本上是一个更通用的it - std::begin(v)),然后继续搜索.>

                  I would like to know how can I find the index positions of elements that verify a certain condition (for example greater than). For example if I have a vector of int values

                  vector<int> V;
                  

                  V contains the values 3 2 5 8 2 1 10 4 7

                  and I want to get all the index positions of elements that are greater than 5. I know std::find_if but according to the documentation it just finds the first element that satisfies a condition.

                  解决方案

                  Loop std::find_if, starting from where you stopped last time.

                  Sample (see it work):

                  std::vector<size_t> results;
                  
                  auto it = std::find_if(std::begin(v), std::end(v), [](int i){return i > 5;});
                  while (it != std::end(v)) {
                     results.emplace_back(std::distance(std::begin(v), it));
                     it = std::find_if(std::next(it), std::end(v), [](int i){return i > 5;});
                  }
                  

                  First we set up the iterator with the first result. If it's not found, the while loop never executes. Otherwise, the index position is stored (std::distance is basically a more generic it - std::begin(v)), and the search continues onward.

                  这篇关于获取 STL 向量中大于某个值的元素的所有位置的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持html5模板网!

                  上一篇:在 vector::push_back 内存明智的引擎盖下会发生什么 下一篇:从 C++ std::vector 中删除元素

                  相关文章

                  最新文章

                • <i id='owJeT'><tr id='owJeT'><dt id='owJeT'><q id='owJeT'><span id='owJeT'><b id='owJeT'><form id='owJeT'><ins id='owJeT'></ins><ul id='owJeT'></ul><sub id='owJeT'></sub></form><legend id='owJeT'></legend><bdo id='owJeT'><pre id='owJeT'><center id='owJeT'></center></pre></bdo></b><th id='owJeT'></th></span></q></dt></tr></i><div id='owJeT'><tfoot id='owJeT'></tfoot><dl id='owJeT'><fieldset id='owJeT'></fieldset></dl></div>

                    <legend id='owJeT'><style id='owJeT'><dir id='owJeT'><q id='owJeT'></q></dir></style></legend>

                    <small id='owJeT'></small><noframes id='owJeT'>

                    <tfoot id='owJeT'></tfoot>

                    • <bdo id='owJeT'></bdo><ul id='owJeT'></ul>