UNPKG

common-data-structure

Version:
10 lines (9 loc) 137 B
/** * 节点结构 */ export class Node { constructor(element) { this.element = element this.next = undefined } }