题解 | #单链表的排序#

单链表的排序

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

import java.util.*;

/*
 * public class ListNode {
 *   int val;
 *   ListNode next = null;
 *   public ListNode(int val) {
 *     this.val = val;
 *   }
 * }
 */

public class Solution {
    /**
     * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可
     *
     * 
     * @param head ListNode类 the head node
     * @return ListNode类
     */
    public ListNode sortInList (ListNode head) {
        // write code here
	  //先将链表中的值全部拿出来放到list里,如果使用数组的话不好决定开辟多大空间
        ListNode cur = head;
        ArrayList<Integer> list = new ArrayList<>();
        while(cur!=null)
        {
            list.add(cur.val);
            cur=cur.next;
        }
        Collections.sort(list);//用Collections工具对list排序
//从排序好的list创建链表
        ListNode rst = new ListNode(list.get(0));
        ListNode tail=rst;
        for(int i=1;i<list.size();i++)
        {
            ListNode tmp = new ListNode(list.get(i));
            tail.next=tmp;
            tail=tail.next;
        }
        tail.next=null;

        return rst;

    }
}

全部评论

相关推荐

牛客279957775号:铁暗恋
点赞 评论 收藏
分享
贺兰星辰:不要漏个人信息,除了简历模板不太好以外你这个个人简介是不是太夸大了...
点赞 评论 收藏
分享
点赞 收藏 评论
分享
牛客网
牛客企业服务