码迷,mamicode.com
首页 > 其他好文 > 详细

并查集

时间:2020-06-14 10:52:46      阅读:55      评论:0      收藏:0      [点我收藏+]

标签:批评   eset   样本   integer   一个人   指正   map   dfa   集中   


import java.util.HashMap;
import java.util.List;
import java.util.Stack;

/**
* 并查集
* <p>
* 1)有若干个样本a、b、c、d,假设类型是V
* 2)在并查集中最开始认为每个样本都在单独的集合里
* 3)用户可以在任何时候调用如下两个方法:
* boolean isSameSet(V x,V y),查询两个样本是否属于一个集合
* void union(V x,V y),把各自所在的集合的所有样本合并成一个集合
* 4)isSameSet和union方法的代价越低越好
*/
public class UnionFind {

public class UnionSet<V> {

public HashMap<V, Node<V>> nodes;

public HashMap<Node<V>, Node<V>> parents;

public HashMap<Node<V>, Integer> sizeMap;

public UnionSet(List<V> values) {
for (V cur : values) {
Node<V> node = new Node<>(cur);
nodes.put(cur, node);
parents.put(node, node);
sizeMap.put(node, 1);
}
}

// 从点cur开始,一直往上找,找到不能再往上的代表点,返回
public Node<V> findFather(Node<V> cur) {
Stack<Node<V>> path = new Stack<>();
while (cur != parents.get(cur)) {
path.push(cur);
cur = parents.get(cur);
}
// cur头节点
while (!path.isEmpty()) {
parents.put(path.pop(), cur);
}
return cur;
}

public boolean isSameSet(V a, V b) {
return nodes.containsKey(a) && nodes.containsKey(b) && findFather(nodes.get(a)) == findFather(nodes.get(b));
}

public void union(V a, V b) {
if (!nodes.containsKey(a) || !nodes.containsKey(b)) {
return;
}
Node<V> aHead = findFather(nodes.get(a));
Node<V> bHead = findFather(nodes.get(b));
if (aHead != bHead) {
int aSetSize = sizeMap.get(aHead);
int bSetSize = sizeMap.get(bHead);
Node<V> big = aSetSize >= bSetSize ? aHead : bHead;
Node<V> small = big == aHead ? bHead : aHead;
parents.put(small, big);
sizeMap.put(big, aSetSize + bSetSize);
sizeMap.remove(small);
}
}

public int getSetNum() {
return sizeMap.size();
}

}

// 如果两个user,a字段一样、或者b字段一样、或者c字段一样,就认为是一个人
// 请合并users,返回合并之后的用户数量
public int mergeUsers(List<User> users) {
UnionSet<User> unionFind = new UnionSet<>(users);
HashMap<String, User> mapA = new HashMap<>();
HashMap<String, User> mapB = new HashMap<>();
HashMap<String, User> mapC = new HashMap<>();
for (User user : users) {
if (mapA.containsKey(user.a)) {
unionFind.union(user, mapA.get(user.a));
} else {
mapA.put(user.a, user);
}
if (mapB.containsKey(user.b)) {
unionFind.union(user, mapB.get(user.b));
} else {
mapB.put(user.b, user);
}
if (mapC.containsKey(user.c)) {
unionFind.union(user, mapC.get(user.c));
} else {
mapC.put(user.c, user);
}
}
// 向并查集询问,合并之后,还有多少个集合?
return unionFind.getSetNum();
}

public class Node<V> {

public V value;

public Node(V value) {
this.value = value;
}

}

public class User {

public String a;

public String b;

public String c;

public User(String a, String b, String c) {
this.a = a;
this.b = b;
this.c = c;
}

}

}


/* 如有意见或建议,欢迎评论区留言;如发现代码有误,欢迎批评指正 */

并查集

标签:批评   eset   样本   integer   一个人   指正   map   dfa   集中   

原文地址:https://www.cnblogs.com/laydown/p/13123742.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!