算法
前端算法
二叉树
class buildingNode { constructor(key, value) { /** * 创建二叉树节点 * 节点具有:指向父节点、左子节点、右节点的指针,自身的data属性(下部代码中的key、value) */ this.parent = null; this.left = null; this.right = null; this.key = key; this.value = value; } } /** * 创建二叉搜索树 * root指向根节点