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

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

      1. <tfoot id='BH0gc'></tfoot>

        C++ 试图交换向量中的值

        时间:2023-09-15
        <tfoot id='PG48o'></tfoot>
          <tbody id='PG48o'></tbody>

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

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

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

                1. 本文介绍了C++ 试图交换向量中的值的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

                  问题描述

                  这是我的交换函数:

                  template <typename t>
                  void swap (t& x, t& y)
                  {
                      t temp = x;
                      x = y;
                      y = temp;
                      return;
                  }
                  

                  这是我的函数(在旁注中 v 存储字符串)调用交换值,但是每当我尝试使用向量中的值调用时,我都会收到错误消息.我不确定我做错了什么.

                  And this is my function (on a side note v stores strings) call to swap values but whenever I try to call using values in a vector I get an error. I'm not sure what I'm doing wrong.

                  swap(v[position], v[nextposition]); //creates errors
                  

                  推荐答案

                  我认为您正在寻找的是 iter_swap 也可以在 中找到.
                  您需要做的就是传递两个迭代器,每个迭代器都指向您要交换的元素之一.
                  因为你有两个元素的位置,你可以做这样的事情:

                  I think what you are looking for is iter_swap which you can find also in <algorithm>.
                  all you need to do is just pass two iterators each pointing at one of the elements you want to exchange.
                  since you have the position of the two elements, you can do something like this:

                  // assuming your vector is called v
                  iter_swap(v.begin() + position, v.begin() + next_position);
                  // position, next_position are the indices of the elements you want to swap
                  

                  这篇关于C++ 试图交换向量中的值的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持html5模板网!

                  上一篇:如何一次将多个整数传递给一个向量? 下一篇:动态分配向量(或向量的向量)

                  相关文章

                  最新文章

                  <tfoot id='oGEfZ'></tfoot>

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

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