实现二叉搜索树的结构数据

//实现二叉搜索树:特点 左侧的值小于父节点  右侧的值大于父节点
    //创建的节点
    class Node {
        constructor(value) {
            this.right = null;
            this.left = null;
            this.value = value
        }
    }
    //存放节点 
    class Bst {
        constructor() {
            this.root = null;

        }
        insertNode(node, oldVal) {
            if (oldVal.value > node.value) {
                if (node.right == null) {
                    node.right = oldVal
                } else {
                    this.insertNode(node.right, oldVal)
                }
            } else if (oldVal.value < node.value) {
                if (node.left == null) {
                    node.left = oldVal
                } else {
                    this.insertNode(node.left, oldVal)
                }
            }
        }
        insert(val) {
            let node = new Node(val);
            if (this.root == null) {
                this.root = node;
            } else {
                this.insertNode(this.root, node)
            }
        }
    }
    let bst=new Bst();
    bst.insert(10);
    bst.insert(1);
    bst.insert(111);
    bst.insert(12);
    bst.insert(7);
    console.log(bst.root);//生成的二叉搜索树

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值