题解 | #重排链表#

重排链表

https://www.nowcoder.com/practice/3d281dc0b3704347846a110bf561ef6b?tpId=117&tqId=37712&rp=1&ru=/exam/oj&qru=/exam/oj&sourceUrl=%2Fexam%2Foj%3Fpage%3D1%26pageSize%3D50%26search%3D%26tab%3D%25E7%25AE%2597%25E6%25B3%2595%25E7%25AF%2587%26topicId%3D117&difficulty=undefined&judgeStatus=undefined&tags=&title=

无语,今晚牛客是不是抽风了

/**
 * Definition for singly-linked list.
 * struct ListNode {
 *     int val;
 *     ListNode *next;
 *     ListNode(int x) : val(x), next(NULL) {}
 * };
 */
class Solution {
public:
    void reorderList(ListNode *head) {
      if (head == nullptr || head->next == nullptr) {
        return ;
      }
      
      //  利用快慢指针移动到中间,翻转后半段链表,然后合并两段链表
      ListNode *fast, *slow;
      fast = slow = head;
      
      //  slow 走到中间位置
      while (fast->next && fast->next->next) {
        fast = fast->next->next;
        slow = slow->next;
      }
      
      
      ListNode *pre = nullptr, *cur = slow->next, *nex = slow->next->next;
      
      //  断开链接
      slow->next = nullptr;
      
      while (nex) {
        cur->next = pre;
        pre = cur;
        cur = nex;
        nex = nex->next;
      }
      
      cur->next = pre;
      
      ListNode *head1 = head, *head2 = cur;
      
      while (head1 && head2) {
        ListNode *nex1 = head1->next;
        ListNode *nex2 = head2->next;
        head1->next = head2;
        head2->next = nex1;
        head1 = nex1;
        head2 = nex2;
      }
    }
};
全部评论

相关推荐

不愿透露姓名的神秘牛友
2024-11-23 10:38
沉淀一会:**圣经 1.同学你面试评价不错,概率很大,请耐心等待;2.你的排名比较靠前,不要担心,耐心等待;3.问题不大,正在审批,不要着急签其他公司,等等我们!4.预计9月中下旬,安心过节;5.下周会有结果,请耐心等待下;6.可能国庆节前后,一有结果我马上通知你;7.预计10月中旬,再坚持一下;8.正在走流程,就这两天了;9.同学,结果我也不知道,你如果查到了也告诉我一声;10.同学你出线不明朗,建议签其他公司保底!11.同学你找了哪些公司,我也在找工作。
点赞 评论 收藏
分享
昨天 12:35
吉首大学 Java
写不来代码的小黑:这不就是想白嫖方案吗
点赞 评论 收藏
分享
评论
点赞
收藏
分享

创作者周榜

更多
牛客网
牛客企业服务