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