跳至主要內容

BM12 单链表的排序

微信公众号:储凡Less than 1 minute

BM12 单链表的排序

题目链接

题目描述

反转链表.png
反转链表.png

刷题思路

代码实现

/*
 * function ListNode(x){
 *   this.val = x;
 *   this.next = null;
 * }
 */
/**
 * @param head ListNode类 the head node
 * @return ListNode类
 */
export function sortInList(head) {
  console.log(head)
}

一些建议