本文整理汇总了Java中it.unimi.dsi.fastutil.ints.IntSets类的典型用法代码示例。如果您正苦于以下问题:Java IntSets类的具体用法?Java IntSets怎么用?Java IntSets使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
IntSets类属于it.unimi.dsi.fastutil.ints包,在下文中一共展示了IntSets类的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的Java代码示例。
示例1: IntMapGraph
import it.unimi.dsi.fastutil.ints.IntSets; //导入依赖的package包/类
public IntMapGraph(Int2ObjectMap<IntSet> map) {
this.map = map;
if (map.defaultReturnValue() == null || !map.defaultReturnValue().equals(IntSets.EMPTY_SET)) {
LOGGER.warn("It is necessary to set default return value of the map as the empty set.");
map.defaultReturnValue(IntSets.EMPTY_SET);
}
int maxNodeIndex = 0, numArcs = 0;
for (Entry<IntSet> x : map.int2ObjectEntrySet()) {
if (x.getIntKey() > maxNodeIndex)
maxNodeIndex = x.getIntKey();
for (int succ : x.getValue()) {
if (succ > maxNodeIndex)
maxNodeIndex = succ;
numArcs++;
}
}
this.numArcs = numArcs;
this.numNodes = maxNodeIndex+1;
}
开发者ID:corradomonti,项目名称:llamafur,代码行数:22,代码来源:IntMapGraph.java
示例2: get
import it.unimi.dsi.fastutil.ints.IntSets; //导入依赖的package包/类
public IntCollection get(T key) {
return map.getOrDefault(key, IntSets.EMPTY_SET);
}
开发者ID:CodeCrafter47,项目名称:BungeeTabListPlus,代码行数:4,代码来源:Object2IntHashMultimap.java
示例3: getExpanded
import it.unimi.dsi.fastutil.ints.IntSets; //导入依赖的package包/类
/**
* Returns the nodes which are already expanded with the specified node.
*
* @param entry the id of the node for which the expansions should be returned
* @return the nodes which are already expanded with the specified node
*/
public IntSet getExpanded(SpatialEntry entry) {
IntSet exp = expanded.get(getPageID(entry));
return (exp != null) ? exp : IntSets.EMPTY_SET;
}
开发者ID:elki-project,项目名称:elki,代码行数:11,代码来源:DeLiCluTree.java
注:本文中的it.unimi.dsi.fastutil.ints.IntSets类示例整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。 |
请发表评论