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

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

      1. 在 C++ 中对链表进行排序

        时间:2023-10-18
        • <bdo id='uknks'></bdo><ul id='uknks'></ul>
          <tfoot id='uknks'></tfoot>
                <tbody id='uknks'></tbody>
                1. <small id='uknks'></small><noframes id='uknks'>

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

                  <legend id='uknks'><style id='uknks'><dir id='uknks'><q id='uknks'></q></dir></style></legend>
                  本文介绍了在 C++ 中对链表进行排序的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                  问题描述

                  我对无限循环很生气,您认为什么是合适的解决方案?

                  I'm getting mad with infinite loop, what do you think is suitable solution?

                  void sorting () {
                    node * temphead = head;
                    node * tempnode = NULL;
                  
                    for (int i=0; i<count; i++) {
                      for (int j=0; j<count-i; j++) {
                        if (temphead->data > temphead->next->data) {
                          tempnode = temphead;
                          temphead = temphead->next;
                          temphead->next = tempnode;
                        }
                  
                        temphead=temphead->next;
                        count++;
                      }
                    }
                  }
                  

                  我试图增加计数并在 for 循环之前和之后使用许多条件和 while- 没有结果

                  I tried to increment count and use many conditions with while- before and after the for loop with no result

                  推荐答案

                  更简单的滑过链表的方法是这样的:

                  An easier way to slide through a linked list is like this:

                  for (node *current = head; current != nullptr; current = current->next) {
                      // This will run through all of the nodes until we reach the end.
                  }
                  

                  并滑动到倒数第二个项目(确保 node->next 存在)如下所示:

                  And to slide to the second to last item (ensuring that node->next exists) looks like this:

                  for (node *current = head; current->next != nullptr; current = current->next) {
                      // Go through all of the nodes that have a 'next' node.
                  }
                  

                  如果你想计算链表中有多少项,你可以这样做:

                  If you want to count how many items are in a linked list, you do something like this:

                  int count = 0;
                  for (node *current = head; current != nullptr; current = current->next) {
                      count = count + 1;
                  }
                  

                  所以像上面这样的选择类型排序看起来像这样:

                  So a selection type sort like you have above would look like this:

                  for (node *index = head; index->next != nullptr; index = index->next) {
                    for (node *selection = index->next; selection != nullptr; selection = selection->next) {
                      if (index->data > selection->data) {
                        swap(index->data, selection->data);
                      }
                    }
                  }
                  

                  尽管排序链表通常不是最好的方法(除非您正在执行合并).

                  Although sorting linked lists is generally not the best way to go (unless you're performing a merge).

                  这篇关于在 C++ 中对链表进行排序的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                  上一篇:用于在链表中查找结点的生产代码 下一篇:链表,在末尾插入 C++

                  相关文章

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

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

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