# 143.Reorder-List

## 143. Reorder List

## 题目地址

<https://www.lintcode.com/en/problem/reorder-list/>

<https://leetcode.com/problems/reorder-list/>

## 题目描述

```
Given a singly linked list L: L0→L1→…→Ln-1→Ln,
reorder it to: L0→Ln→L1→Ln-1→L2→Ln-2→…

You may not modify the values in the list's nodes, only nodes itself may be changed.

Example 1:

Given 1->2->3->4, reorder it to 1->4->2->3.
Example 2:

Given 1->2->3->4->5, reorder it to 1->5->2->4->3.
```

## 代码

### Approach #1 fast-slow pointer

```java
public class Solution {
    public void reorderList(ListNode head) {
    if (head == null || head.next == null) return;
    // find middle
    ListNode slow = head, fast = head; // fast = head.next 也能通过！
    while (fast != null && fast.next != null){
      slow = slow.next;
      fast = fast.next.next;
    }
    ListNode rHead = slow.next;
    slow.next = null;

    // reverse ListNode on the right side
    ListNode prev = null;
    while (rHead != null) {
      ListNode temp = rHead.next;
      rHead.next = prev;
      prev = rHead;
      rHead = temp;
    }

    // merge two list
    rHead = prev;
    ListNode lHead = head;
    while (lHead != null && rHead != null){
      ListNode next = lHead.next;
      // add right head
      lHead.next = rHead;
      rHead = rHead.next;
      // update left head 
      lHead.next.next = next;
      lHead = next;
    }

  }
}
```


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://wentao-shao.gitbook.io/leetcode/linked-list/143.reorder-list.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
