143. 重排链表——寻找链表中点 + 链表逆序 + 合并链表

class Solution {
public:
    void reorderList(ListNode* head) {
        if(!head || !head -> next || ! head -> next -> next)    //长度小于2都不用处理
            return;
        ListNode *slow = head, *fast = head, *sec;
        while(fast && fast -> next){    //快慢指针找到中间的节点
            slow = slow -> next;
            fast = fast -> next -> next;
        }
        fast = slow -> next;    //fast标记为下一段
        slow -> next = nullptr; //截断
        reverseList(fast);  //第二段反序
        combineList(head, fast);    //合并
    }
    void reverseList(ListNode*& head){
        ListNode *left = head, *mid = head -> next, *right;
        while(mid){
            right = mid -> next;    //right向右移动
            left -> next = right;   //left指向下一个点
            mid -> next = head;     //mid向左指
            head = mid; //head记录头节点,也就是每一次中较右的节点
            mid = right;    //mid向右移动
        }
    }

    void combineList(ListNode*& fir, ListNode*& sec){
        while(sec){ //默认fir长1个单位 或 长度相等
            ListNode *temp = sec;
            sec = sec -> next;
            //插入节点
            temp -> next = fir -> next;
            fir -> next = temp;
            fir = temp -> next;
        }
    }
};

Accepted
12/12 cases passed (28 ms)
Your runtime beats 96.76 % of cpp submissions
Your memory usage beats 69.4 % of cpp submissions (17.3 MB)

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值