首页
学习
活动
专区
圈层
工具
发布
社区首页 >问答首页 >如何实现Union-Find算法?

如何实现Union-Find算法?
EN

Stack Overflow用户
提问于 2019-05-21 11:31:23
回答 1查看 91关注 0票数 0

我正在尝试实现Union-Find算法,但我查找到的所有实现都使用整数。我需要实现算法,这样才能以这种方式调用联合()和连接()方法:联合( Vertex v,Vertex,w) - connected(Vertex v,Vertex w)

我试着调整我的算法,使其与顶点一起工作,但我不知道如何替换父属性和排名属性来使其工作。请帮助我:(

公共类UF {

代码语言:javascript
复制
private int[] parent;  // parent[i] = parent of i
private byte[] rank;   // rank[i] = rank of subtree rooted at i (never more than 31)
private int count;     // number of components

/**
 * Initializes an empty union–find data structure with {@code n} sites
 * {@code 0} through {@code n-1}. Each site is initially in its own 
 * component.
 *
 * @param  n the number of sites
 * @throws IllegalArgumentException if {@code n < 0}
 */
public UF(int n) {
    if (n < 0) throw new IllegalArgumentException();
    count = n;
    parent = new int[n];
    rank = new byte[n];
    for (int i = 0; i < n; i++) {
        parent[i] = i;
        rank[i] = 0;
    }
}

/**
 * Returns the component identifier for the component containing site {@code p}.
 *
 * @param  p the integer representing one site
 * @return the component identifier for the component containing site {@code p}
 * @throws IllegalArgumentException unless {@code 0 <= p < n}
 */
public int find(int p) {
    validate(p);
    while (p != parent[p]) {
        parent[p] = parent[parent[p]];    // path compression by halving
        p = parent[p];
    }
    return p;
}

/**
 * Returns the number of components.
 *
 * @return the number of components (between {@code 1} and {@code n})
 */
public int count() {
    return count;
}

/**
 * Returns true if the the two sites are in the same component.
 *
 * @param  p the integer representing one site
 * @param  q the integer representing the other site
 * @return {@code true} if the two sites {@code p} and {@code q} are in the same component;
 *         {@code false} otherwise
 * @throws IllegalArgumentException unless
 *         both {@code 0 <= p < n} and {@code 0 <= q < n}
 */
public boolean connected(int p, int q) {
    return find(p) == find(q);
}

/**
 * Merges the component containing site {@code p} with the 
 * the component containing site {@code q}.
 *
 * @param  p the integer representing one site
 * @param  q the integer representing the other site
 * @throws IllegalArgumentException unless
 *         both {@code 0 <= p < n} and {@code 0 <= q < n}
 */
public void union(int p, int q) {
    int rootP = find(p);
    int rootQ = find(q);
    if (rootP == rootQ) return;

    // make root of smaller rank point to root of larger rank
    if      (rank[rootP] < rank[rootQ]) parent[rootP] = rootQ;
    else if (rank[rootP] > rank[rootQ]) parent[rootQ] = rootP;
    else {
        parent[rootQ] = rootP;
        rank[rootP]++;
    }
    count--;
}

// validate that p is a valid index
private void validate(int p) {
    int n = parent.length;
    if (p < 0 || p >= n) {
        throw new IllegalArgumentException("index " + p + " is not between 0 and " + (n-1));  
    }
}

}

EN

回答 1

Stack Overflow用户

发布于 2019-05-21 14:02:46

在标准算法中,每个顶点都被赋予一个int id,表示它在数组中的位置。这意味着parent[0]包含了顶点0的父对象的id。

实际上,您可以将数组看作是从int到其他对象的一个非常有效的映射。如果将int替换为更复杂的类型,则需要开始使用Map而不是数组。

因此,如果您想使用一个名为Vertex的类来表示顶点,那么您需要以不同的方式声明父级和等级:

代码语言:javascript
复制
Map<Vertex,Vertex> parent = new HashMap<>();
Map<Vertex,Rank> rank = new HashMap<>();

如果您想坚持当前的方案,可以用Byte替换Rank -尽管使用类可能是更好的封装。

然后,您将得到如下所示的代码:

代码语言:javascript
复制
while (!vertex.equals(parent.get(vertex))) {
    parent.put(vertex, parent.get(parent.get(vertex)));
    vertex = parent.get(vertex);
}
return vertex;

需要注意的一件事是,如果要使用Vertex作为映射的键(正如我所建议的那样),则必须实现equalshashCode方法。

票数 0
EN
页面原文内容由Stack Overflow提供。腾讯云小微IT领域专用引擎提供翻译支持
原文链接:

https://stackoverflow.com/questions/56230697

复制
相关文章

相似问题

领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档