Swap Nodes in Pairs

本文介绍了一种链表操作算法,该算法可以将给定链表中的节点以每两个一组的方式进行翻转。通过使用预置指针pre、当前指针cur及下一个节点指针next,文章详细阐述了实现这一功能的具体步骤。

Given a linked list, swap every two adjacent nodes and return its head.

For example,
Given 1->2->3->4, you should return the list as 2->1->4->3.

Your algorithm should use only constant space. You may not modify the values in the list, only nodes itself can be changed.


pro:给一个链表,要求将链表以2个节点为一组翻转,从head开始

sol:这个是Reverse in Group的简化版本。

1.我们使用指针pre,cur,next来遍历链表。pre初始为root,cur初始为head,next初始为cur->next。当然链表为空或者链表只有一个节点的情况要预先处理

2.pre每次指向上一组的末尾,cur指向下一组的开始,next指向cur的下一个节点。那翻转的操作就是:

pre->next  = next;

cur->next = next->next;

next->next = cur;

3.然后更新各个指针:需要先将pre设为cur(也就是这一组的最后一个节点),再判断下一个以及下下个是否为空,否则分别就是cur和next。

code:

class Solution {
public:
    ListNode *swapPairs(ListNode *head)
    {
        if(head==NULL||head->next==NULL) return head;
        ListNode *pre,*cur,*next,*temp;
        ListNode *root = new ListNode(0);
        root->next = head;
        pre = root;
        cur=head;
        next = cur->next;
        while(1)
        {
            temp = next;
            pre->next = next;
            cur->next = next->next;
            next->next = cur;
            pre = cur;
            if(pre->next!=NULL)
                cur = pre->next;
            else break;
            if(pre->next->next!=NULL)
                next = pre->next->next;
            else break;
        }
        return root->next;
    }
};



评论
成就一亿技术人!
拼手气红包6.0元
还能输入1000个字符
 
红包 添加红包
表情包 插入表情
 条评论被折叠 查看
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值