/** * 结点 */ // function ListNode(x) { // this.val = x // this.next = null // } export function oddEvenList(head) { console.log(head) }