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

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

    1. <tfoot id='oFB8s'></tfoot>
    2. <legend id='oFB8s'><style id='oFB8s'><dir id='oFB8s'><q id='oFB8s'></q></dir></style></legend>
      <i id='oFB8s'><tr id='oFB8s'><dt id='oFB8s'><q id='oFB8s'><span id='oFB8s'><b id='oFB8s'><form id='oFB8s'><ins id='oFB8s'></ins><ul id='oFB8s'></ul><sub id='oFB8s'></sub></form><legend id='oFB8s'></legend><bdo id='oFB8s'><pre id='oFB8s'><center id='oFB8s'></center></pre></bdo></b><th id='oFB8s'></th></span></q></dt></tr></i><div id='oFB8s'><tfoot id='oFB8s'></tfoot><dl id='oFB8s'><fieldset id='oFB8s'></fieldset></dl></div>
    3. 在单个链表上交换节点

      Swapping Nodes on a single linked list(在单个链表上交换节点)
    4. <legend id='B1AzR'><style id='B1AzR'><dir id='B1AzR'><q id='B1AzR'></q></dir></style></legend>
        <bdo id='B1AzR'></bdo><ul id='B1AzR'></ul>

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

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

            <tbody id='B1AzR'></tbody>
                <tfoot id='B1AzR'></tfoot>

                本文介绍了在单个链表上交换节点的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                问题描述

                我正在尝试创建一个 swapNode 函数,它可以接受任意两个节点并交换它们.我已经制定了一个算法,如果它们至少相距 2 个节点,则该算法有效,但我似乎无法想出一种算法,如果它们彼此靠近则有效.

                I am trying to make a swapNode function that can take any two nodes and swap them. I've made an algorithm that works if they're at least 2 nodes away, but I can't seem to come up with an algorithm that will work if they are closer to each other.

                这是我目前所写的:

                void swapNode(call * &head, call * &first, call * &second){
                    call * firstPrev = NULL;
                    call * secPrev = NULL;
                    call * current = head;
                
                    //set previous for first
                    while((current->next != first) ){
                        current = current->next;
                    }
                
                    firstPrev = current;
                    current = head;
                
                    //set previous for second
                    while((current->next != second) ){
                        current = current->next;
                    }
                
                    secPrev = current;
                    current = second->next;
                
                    //set firstPrev-> next to second
                    firstPrev->next = second;
                    //set secPrev->next to first
                    secPrev->next = first;
                    //set second->next = first->next
                    second->next = first->next;
                    //set first->next to current
                    first->next = current;
                
                    current = head;
                    while(current->next != NULL){
                        cout << current->number << endl;
                        current = current->next;
                    }
                
                    cout << current->number << endl;
                }
                

                我现在把它作为我的交换部分,但它似乎仍然不能正常工作

                I now have this as my swap part, but it still doesn't seem to work correctly

                //swap firstPrev-> next with second->next
                tmp = firstPrev->next;
                second->next = firstPrev->next;
                second->next = tmp;
                //swap swap first->next with second->next
                tmp = first->next;
                second->next = first->next;
                second->next = tmp;
                

                这个似乎也不起作用,我遇到了段错误.

                This one doesn't seem to work either, I get a seg fault.

                    //swap previous's->next
                    tmp =firstPrev->next;
                    secPrev->next = firstPrev->next;
                    secPrev->next = tmp;
                    //swap swap first->next with second->next
                    tmp = first->next;
                    second->next = first->next;
                second->next = tmp;
                

                推荐答案

                说我们有:

                Node1 -> Node2 -> Node3 -> Node4 -> Node5
                

                要交换两个节点,您需要交换每个节点之前的next 值,以及要交换的节点的next 值.

                To swap two nodes, you need to swap the next values of the ones before each of them, and also the next values of the nodes you want to swap.

                因此,要交换 Node2 和 Node3,您实际上必须将 Node1->nextNode2->nextNode2- 交换>nextNode3->next.即使它们彼此相邻(或者即使它们是同一个节点),这也会起作用.例如:

                So to swap, say, Node2 and Node3, you effectively have to swap Node1->next with Node2->next, and Node2->next with Node3->next. That will work, even if they're right next to each other (or even if it's the same node). For example:

                交换 Node1->nextNode2->next

                Node1->next = Node3
                Node2->next = Node2
                

                Node2->nextNode3->next

                Node2->next = Node4
                Node3->next = Node2
                

                结果如下:

                Node1 -> Node3 -> Node2 -> Node4 -> Node5
                

                交换!

                正如评论部分中提到的,如果用任何东西交换 Node1,你必须为链表设置一个新的头.

                As unwind noted in the comments section, if swapping Node1 with anything, you'll have to set a new head for the linked list.

                针对问题的

                用于交换几乎正确的代码.但是,您需要将 firstPrev 与 secPrev 交换.在我的示例中,我们将节点的 next 值之一交换了两次,因为它们彼此相邻.但从逻辑上讲,我们希望交换前两个节点的 next ,然后交换实际节点的 next .试试这个:

                Your code for swapping almost right. However, you need to swap the firstPrev with secPrev. It just so happened in my example that we were swapping one of the node's next values twice, because they were next to each other. But logically, we want to swap the nexts of the two previous ones, and then swap the nexts of the actual nodes. Try this:

                //swap firstPrev-> next with secPrev->next
                tmp = firstPrev->next;
                secPrev->next = firstPrev->next;
                secPrev->next = tmp;
                //swap swap first->next with second->next
                tmp = first->next;
                second->next = first->next;
                second->next = tmp;
                

                如果您遇到段错误,请检查 tmp 变量 - 这可能是某处的分配或删除错误.你从哪里得到段错误?

                If you're getting a segfault, check the tmp variable - it could be an error of allocation or deletion somewhere. Where do you get the segfault?

                这篇关于在单个链表上交换节点的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!

                相关文档推荐

                Is Type(::x); valid?(是类型(::x);有效的?)
                Difference between an inline function and static inline function(内联函数和静态内联函数的区别)
                Compilation fails randomly: quot;cannot open program databasequot;(编译随机失败:“无法打开程序数据库)
                Too many initializers error for a simple array in bcc32(bcc32 中的简单数组的初始值设定项过多错误)
                No Member named stoi in namespace std(命名空间 std 中没有名为 stoi 的成员)
                Error using a constexpr as a template parameter within the same class(在同一个类中使用 constexpr 作为模板参数时出错)
                  <tbody id='ecL8t'></tbody>
                <legend id='ecL8t'><style id='ecL8t'><dir id='ecL8t'><q id='ecL8t'></q></dir></style></legend>
                    <bdo id='ecL8t'></bdo><ul id='ecL8t'></ul>

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

                        <tfoot id='ecL8t'></tfoot>

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