算法-并查集
package com.jiucaiyuan.net.algrithm.set; import java.util.HashMap; import java.util.List; import java.util.Stack; /** * @Author jiucaiyuan 2022/3/16 23:15 * @mail services@jiucaiyuan.net */ public class UnionFindDemo { public static class Element<V> { public V value; public Element(V value) { this.value = value; } } public static class UnionFindSet<V> { //每个对象对应的元素 public HashMap<V, Element<V>> elementMap; // <某元素,该元素的父> 直接父元素,不一定是代表元素 public HashMap<Element<V>, Element<V>> fatherMap; // <集合代表元素,集合大小> public HashMap<Element<V>, Integer> sizeMap; /** * 并查集构造函数,初始化集合中元素,每个元素为一个集合 * 局限:并查集初始化时,要求指定集合中所有元素 * @param list 指定初始化数据范围 */ public UnionFindSet(List<V> list) { elementMap = new HashMap<>(); fatherMap = new HashMap<>(); sizeMap = new HashMap<>(); for (V value : list) { Element<V> element = new Element<>(value); elementMap.put(value, element); fatherMap.put(element, element); sizeMap.put(element, 1); } } //找到指定元素的代表元素 //当调用的特别频繁时,可以认为时间复杂度是O(1),如果调用次数少,时间复杂度到不了O(1) private Element<V> findHead(Element<V> element) { Stack<Element<V>> path = new Stack<>(); //找到代表节点 while (element != fatherMap.get(element)) { path.push(element); element = fatherMap.get(element); } //扁平化处理,把所有元素的代表节点记录下来 while(!path.isEmpty()){ fatherMap.put(path.pop(),element); } return element; } /** * 判断集合a和集合b是否是同一个集合 * @param a * @param b * @return */ public boolean isSameSet(V a,V b){ if(elementMap.containsKey(a) && elementMap.containsKey(b)){ return findHead(elementMap.get(a)) == findHead(elementMap.get(b)); } return false; } /** * 合并集合a和集合b * @param a * @param b */ public void union(V a,V b){ if(elementMap.containsKey(elementMap.get(a)) && elementMap.containsKey(elementMap.get(b))){ Element<V> aHead = findHead(elementMap.get(a)); Element<V> bHead = findHead(elementMap.get(b)); //如果不是同一个集合,进行合并操作 if(aHead != bHead){ Element<V> bigHead = sizeMap.get(aHead)>=sizeMap.get(bHead)?aHead:bHead; Element<V> smallHead = bigHead == aHead?bHead:aHead; //设置父节点即可,在findHead方法时,会把fatherMap的关系设置成代表元素 fatherMap.put(smallHead,bigHead); sizeMap.put(bigHead,sizeMap.get(aHead) + sizeMap.get(bHead)); sizeMap.remove(smallHead); } } } } }
« 算法-43.字符串相乘
|
算法-kmp»
日历
个人资料
diaba 寻求合作请留言或联系mail: services@jiucaiyuan.net
链接
最新文章
存档
- 2024年10月(1)
- 2024年8月(2)
- 2024年6月(4)
- 2024年5月(1)
- 2023年7月(1)
- 2022年10月(1)
- 2022年8月(1)
- 2022年6月(11)
- 2022年5月(6)
- 2022年4月(33)
- 2022年3月(26)
- 2021年3月(1)
- 2020年9月(2)
- 2018年8月(1)
- 2018年3月(1)
- 2017年3月(3)
- 2017年2月(6)
- 2016年12月(3)
- 2016年11月(2)
- 2016年10月(1)
- 2016年9月(3)
- 2016年8月(4)
- 2016年7月(3)
- 2016年6月(4)
- 2016年5月(7)
- 2016年4月(9)
- 2016年3月(4)
- 2016年2月(5)
- 2016年1月(17)
- 2015年12月(15)
- 2015年11月(12)
- 2015年10月(6)
- 2015年9月(11)
- 2015年8月(8)
分类
热门文章
- SpringMVC:Null ModelAndView returned to DispatcherServlet with name 'applicationContext': assuming HandlerAdapter completed request handling
- Mac-删除卸载GlobalProtect
- java.lang.SecurityException: JCE cannot authenticate the provider BC
- MyBatis-Improper inline parameter map format. Should be: #{propName,attr1=val1,attr2=val2}
- Idea之支持lombok编译
标签
最新评论
- logisqykyk
Javassist分析、编辑和创建jav... - xxedgtb
Redis—常见参数配置 - 韭菜园 ... - wdgpjxydo
SpringMVC:Null Model... - rllzzwocp
Mysql存储引擎MyISAM和Inno... - dpkgmbfjh
SpringMVC:Null Model... - tzklbzpj
SpringMVC:Null Model... - bqwrhszmo
MyBatis-Improper inl... - 乐谱吧
good非常好 - diaba
@diaba:应该说是“时间的度量依据”... - diaba
如果速度增加接近光速、等于光速、甚至大于...
最新微语
- 从今天起,做一个幸福的人。喂马,砍柴,(思想)周游世界
2022-03-21 23:31
- 2022.03.02 23:37:59
2022-03-02 23:38
- 几近崩溃后,找到解决方法,总是那么豁然开朗!所以遇到问题要坚持!
2018-07-18 10:49
- 2018年关键字“走心”
2018-03-19 16:07
- 保护好自己最大的方法是让自己更强大,不要柔弱的像一只绵羊一样,得谁巴拉,就谁巴拉!
2017-12-20 10:24
发表评论: