/**
 * struct ListNode {
 *  int val;
 *  struct ListNode *next;
 *  ListNode(int x) : val(x), next(nullptr) {}
 * };
 */
class Solution {
  public:
    /**
     * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可
     *
     *
     * @param head ListNode类 the head node
     * @return ListNode类
     */
    ListNode* sortInList(ListNode* head) {
        // write code here
        // 递归终止条件:空链表或只有一个节点
        if (!head || !head->next) {
            return head;
        }

        // 使用快慢指针找到链表中点
        ListNode* slow = head;
        ListNode* fast = head->next;

        while (fast && fast->next) {
            slow = slow->next;
            fast = fast->next->next;
        }

        // 分割链表
        ListNode* mid = slow->next;
        slow->next = nullptr;

        // 递归拆分
        ListNode* left = sortInList(head);
        ListNode* right = sortInList(mid);

        // 合并并排序
        return merge(left, right);
    }

  private:
    ListNode* merge(ListNode* l1, ListNode* l2) {
        ListNode dummy(0);  // 哑节点
        ListNode* curr = &dummy;

        while (l1 && l2) {
            if (l1->val <= l2->val) {
                curr->next = l1;
                l1 = l1->next;
            } else {
                curr->next = l2;
                l2 = l2->next;
            }
            curr = curr->next;
        }

        // 连接剩余部分
        curr->next = l1 ? l1 : l2;

        return dummy.next;
    }
};