Javascript创建并查集类方法

并查集

包含 两方面

  1. 给节点找到权值最大的BOSS,合并
  2. 查找该节点的时候,找到该节点的BOSS,进行比较,操作
class UnionFind{
    constructor(n){
        this.node = new Array(n)
                .fill().map((item, idx) => idx)
        // 树的高度,代表了节点的权重
        this.rank = new Array(n).fill(0);
    }
    // 查找当前元素所在的根节点
    find(x){
       if(x === this.node[x]) {
           return x;
       }
       return this.find(this.node[x]);
    }
    // 合并x,y所处集合
    Unite(x, y){
        x = this.find(x);
        y = this.find(y);
        if (x === y) {
            return;
        }
        if (this.rank[x] < this.rank[y]){
            node[x] = y;
        } else {
            if (this.rank[x] === this.rank[y]) {
                this.rank[x]++;
            }
            node[y] = x;
        }
    }
    // 判断两个节点是否为同一集合
    same(x, y) {
        return this.find(x) === this.find(y);
    }
}

参考链接:

[1]:数据结构 – 并查集

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值