UNPKG

common-data-structure

Version:
11 lines (10 loc) 197 B
/** * Node节点类 */ export class Node { constructor(key) { this.key = key // 节点值 this.left = null // 左侧子节点引用 this.right = null // 右侧子节点引用 } }