最新公告
  • 欢迎您光临码农资源网,本站秉承服务宗旨 履行“站长”责任,销售只是起点 服务永无止境!加入我们
  • 使用 Javascript 实现各种树算法

    使用 javascript 实现各种树算法

    简单的树

    1. 我们需要始终从简单的算法开始,然后一步步走向复杂的算法。
    • 简单的树
    • 二叉树
    class simpletree {
        constructor(value) {
            this.value = value;
            this.children = [];
        }
    
        insertchild(value) {
            const newchild = new simpletree(value);
            const lastelement = this.findlastchild(this);
            lastelement.children.push(newchild);
    
            return newchild;
        }
    
        findlastchild(root) {
            if (root.children.length == 0) {
                return root;
            }
            return this.findlastchild(root.children[0]);
        }
    
        traversal(root) {
            console.log(root.value + ' --> ');
            root.children.foreach(child => {
                this.traversal(child);
            })
        }
    }
    
    const simpletree = new simpletree('a');
    simpletree.insertchild('b');
    simpletree.insertchild('c');
    simpletree.insertchild('d');
    simpletree.insertchild('e');
    simpletree.insertchild('f');
    
    console.log(simpletree)
    simpletree.traversal(simpletree)
    
    /*
    {
        "value": "a",
        "children": [
            {
                "value": "b",
                "children": [
                    {
                        "value": "c",
                        "children": [
                            {
                                "value": "d",
                                "children": [
                                    {
                                        "value": "e",
                                        "children": [
                                            {
                                                "value": "f",
                                                "children": []
                                            }
                                        ]
                                    }
                                ]
                            }
                        ]
                    }
                ]
            }
        ]
    }
    */
    
    

    二叉树

    class BinaryTree {
        constructor(value) {
            this.value = value;
            this.left = null;
            this.right = null;
        }
    
        insertNode(value) {
            const newNode = new BinaryTree(value);
            const {node: lastNode, side} = this.findAppropriatePlace(this, value);
            lastNode[side] = newNode;
    
            return newNode;
        }
    
        removeFromNode(value) {
           this.findAppropriateNodAndrRemove(this, value);
        }
    
        findAppropriateNodAndrRemove(root, value) {
            const side = root.value 
    
    
    
    
              
    
                
            
    想要了解更多内容,请持续关注码农资源网,一起探索发现编程世界的无限可能!
    本站部分资源来源于网络,仅限用于学习和研究目的,请勿用于其他用途。
    如有侵权请发送邮件至1943759704@qq.com删除

    码农资源网 » 使用 Javascript 实现各种树算法
    • 7会员总数(位)
    • 25846资源总数(个)
    • 0本周发布(个)
    • 0 今日发布(个)
    • 294稳定运行(天)

    提供最优质的资源集合

    立即查看 了解详情