public class Solution { public void reorderList(ListNode head) { if(head==null||head.next==null||head.next.next==null){ return ; } ListNode fast = head; ListNode pre ,last; while(fast!=null&&fast.next!=null&&fast.next.next!=null){ ...