实现几种数据结构 链表 class ListNode { val: number next: ListNode | null constructor(val: number = 0, next: ListNode | null = null) { this.val = val this.next = next } } haneball小于 1 分钟TypeScript数据结构