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

        <legend id='e3qFm'><style id='e3qFm'><dir id='e3qFm'><q id='e3qFm'></q></dir></style></legend>
      1. <small id='e3qFm'></small><noframes id='e3qFm'>

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

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

        连接两个向量的最佳方法是什么?

        时间:2023-09-16

        1. <small id='0pTYo'></small><noframes id='0pTYo'>

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

              • <tfoot id='0pTYo'></tfoot>

                  本文介绍了连接两个向量的最佳方法是什么?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

                  问题描述

                  我正在使用多线程并希望合并结果.例如:

                  I'm using multitreading and want to merge the results. For example:

                  std::vector<int> A;
                  std::vector<int> B;
                  std::vector<int> AB;
                  

                  我希望 AB 必须按顺序处理 A 的内容和 B 的内容.做这样的事情最有效的方法是什么?

                  I want AB to have to contents of A and the contents of B in that order. What's the most efficient way of doing something like this?

                  推荐答案

                  AB.reserve( A.size() + B.size() ); // preallocate memory
                  AB.insert( AB.end(), A.begin(), A.end() );
                  AB.insert( AB.end(), B.begin(), B.end() );
                  

                  这篇关于连接两个向量的最佳方法是什么?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持html5模板网!

                  上一篇:向量、结构和 std::find 下一篇:对象指针向量上的 vector::erase() 是否会破坏对象本

                  相关文章

                  最新文章

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

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