题解 | #重排链表#

重排链表

http://www.nowcoder.com/practice/3d281dc0b3704347846a110bf561ef6b

/**
 * Definition for singly-linked list.
 * class ListNode {
 *     int val;
 *     ListNode next;
 *     ListNode(int x) {
 *         val = x;
 *         next = null;
 *     }
 * }
 */
import java.util.*;
public class Solution {
    public void reorderList(ListNode head) {
        //递归出口:未插入链表不足三位,无需插入
        if(head == null)
            return;
        if(head.next == null)
            return ;
        if(head.next.next == null)
            return ;
        //寻找未排序链表的首元素、首元素的下一个元素、尾元素,并把尾元素插入到第一二个元素中间
        ListNode second = head.next;
        ListNode tail = second.next;
        ListNode pre = second;
        while(tail.next!=null){
            pre = tail;
            tail = tail.next;
        }
        //切断尾元素
        pre.next = null;
        head.next = tail;
        tail.next = second;
        //重定位未排序部分链表的首元素
        head = second;
        //递归插入
        reorderList(second);
    }
}
全部评论
太牛了
点赞 回复 分享
发布于 2022-08-14 10:14

相关推荐

贺兰星辰:不要漏个人信息,除了简历模板不太好以外你这个个人简介是不是太夸大了...
点赞 评论 收藏
分享
11-27 17:08
已编辑
牛客_产品运营部_私域运营
腾讯 普通offer 24k~26k * 15,年包在36w~39w左右。
点赞 评论 收藏
分享
评论
13
收藏
分享
牛客网
牛客企业服务