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

  • <small id='GxOMw'></small><noframes id='GxOMw'>

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

        根据两个值对 STL 向量进行排序

        时间:2023-06-05

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

                <tbody id='j1f4V'></tbody>
              <legend id='j1f4V'><style id='j1f4V'><dir id='j1f4V'><q id='j1f4V'></q></dir></style></legend>

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

                  本文介绍了根据两个值对 STL 向量进行排序的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                  问题描述

                  如何根据两种不同的比较标准对 STL 向量进行排序?默认的 sort() 函数只接受一个排序器对象.

                  How do I sort an STL vector based on two different comparison criterias? The default sort() function only takes a single sorter object.

                  推荐答案

                  您需要将两个条件合二为一.这是一个如何对具有第一个和第二个字段的结构进行排序的示例基于第一个字段,然后是第二个字段.

                  You need to combine the two criteria into one. Heres an example of how you'd sort a struct with a first and second field based on the first field, then the second field.

                  #include <algorithm>
                  
                  struct MyEntry {
                    int first;
                    int second;
                  };
                  
                  bool compare_entry( const MyEntry & e1, const MyEntry & e2) {
                    if( e1.first != e2.first)
                      return (e1.first < e2.first);
                    return (e1.second < e2.second);
                  }
                  
                  int main() {
                    std::vector<MyEntry> vec = get_some_entries();
                    std::sort( vec.begin(), vec.end(), compare_entry );
                  }
                  

                  注意:compare_entry 的实现已更新为使用来自 Nawaz 的代码.

                  NOTE: implementation of compare_entry updated to use code from Nawaz.

                  这篇关于根据两个值对 STL 向量进行排序的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                  上一篇:C++ std::vector 的独立 std::threads 下一篇:C++ 向量,返回与参数

                  相关文章

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

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

                        <bdo id='qcMOl'></bdo><ul id='qcMOl'></ul>

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