Class GraphMap<T>

java.lang.Object
Type Parameters:
T - 节点类型
All Implemented Interfaces:
Serializable, Cloneable, Iterable<Map.Entry<T,Collection<T>>>, Map<T,Collection<T>>, XWrapper<Map<T,Collection<T>>>, MultiValueMap<T,T>

public class GraphMap<T> extends SetValueMap<T,T>
支持处理无向图结构的Map,本质上是基于SetValueMap实现的邻接表
Since:
Java 17+
Author:
Kimi Liu
See Also: