LeetCode--Reorder List

(1)双指针(快慢):找到中节点

(2)反转第一或者第二个链表(反转第一个后面合并完了还得再反转),所以建议反转第二个链表

代码:暂时不贴了

https://oj.leetcode.com/problems/reorder-list/

原文地址:https://www.cnblogs.com/cane/p/3960458.html