题解 | #对链表进行插入排序#

对链表进行插入排序

https://www.nowcoder.com/practice/cc6c61215dfb446f8eccea3663e3d8db

using System;
using System.Collections.Generic;

/*
public class ListNode
{
    public int val;
    public ListNode next;

    public ListNode (int x)
    {
        val = x;
    }
}
*/

class Solution {
    /**
     * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可
     *
     *
     * @param head ListNode类
     * @return ListNode类
     */
    public ListNode insertionSortList(ListNode head) {
        // write code here
        ListNode lnRtn = new ListNode(0);
        while (head != null) {
            ListNode lnRtnD = lnRtn;
            ListNode lnFindPre = null;
            while (lnRtnD.next != null) {
                if (lnRtnD.next != null && lnRtnD.next.val > head.val) {
                    lnFindPre = lnRtnD;
                    break;
                }
                lnRtnD = lnRtnD.next;
            }
            if (lnFindPre != null) {
                ListNode lnTmp = head.next;
                ListNode lnFindN = lnFindPre.next;
                lnFindPre.next = head;
                head.next = lnFindN;
                head = lnTmp;
            } else {
                ListNode lnHN = head.next;
                lnRtnD.next = head;
                head.next = null;
                head = lnHN;
            }
        }
        return lnRtn.next;
    }
}

全部评论

相关推荐

不愿透露姓名的神秘牛友
12-17 17:43
Java抽象带篮子:绝绝子暴风吸入啊
点赞 评论 收藏
分享
11-24 19:04
已编辑
湖南工商大学 Java
点赞 评论 收藏
分享
11-01 20:03
已编辑
门头沟学院 算法工程师
Lambdayo:算法岗是这样的,后端开发的牛马可就没那么幸运啦
点赞 评论 收藏
分享
评论
点赞
收藏
分享
牛客网
牛客企业服务