跳转至

143. 重排链表

题目描述

原题

给定一个单链表 LL_0→_L_1→…→_L**n-1→L_n , 将其重新排列后变为: _L_0→_L**nL_1→_L**n-1→L_2→_L**n-2→…

你不能只是单纯的改变节点内部的值,而是需要实际的进行节点交换。

示例 1:

给定链表 1->2->3->4, 重新排列为 1->4->2->3.

示例 2:

给定链表 1->2->3->4->5, 重新排列为 1->5->2->4->3.

题解

/**
 * Definition for singly-linked list.
 * public class ListNode {
 *     int val;
 *     ListNode next;
 *     ListNode() {}
 *     ListNode(int val) { this.val = val; }
 *     ListNode(int val, ListNode next) { this.val = val; this.next = next; }
 * }
 */
class Solution {
    public void reorderList(ListNode head) {
        if(head==null||head.next==null) return;
        //1.将所有节点添加到数组中
        ArrayList<ListNode> list = new ArrayList<>();
        while(head!=null){
            list.add(head);
            head = head.next;
        }
        //获取第一个节点
        head = list.get(0);
        ListNode node = head;
        int i = 1;
        int j = list.size()-1;
        while(i <= j){
            node.next = list.get(j);
            node = node.next;
            node.next  = list.get(i);
            node = node.next;
            i++;
            j--;
        }
        node.next = null;
    }
}