gpt4 book ai didi

java - 按满足一定条件的值移除元素

转载 作者:塔克拉玛干 更新时间:2023-11-02 08:07:56 25 4
gpt4 key购买 nike

从这些数据结构中,我想按值删除满足特定条件的元素

<Data Structures>

- RowSortedTable<String, String, Double> a; (Guava Table)
- HashMap<String, Double> b;

来自previous question ,我使用 Collections.Singleton 找到了优雅的答案,但是,似乎需要精确匹配。

hmap.values().removeAll(Collections.singleton("Two"));

在这里,我想从表或 map 中删除值小于特定阈值的元素。您将如何编写代码?


我刚查了两个答案,都是关于map的答案,那table case呢?我的解决方案如下。

for (Iterator<String> it1 = proptypeconf.columnKeySet().iterator(); it1.hasNext();) {
String type = it1.next();
System.out.println(type);
for (Iterator<Map.Entry<String, Double>> it2 = proptypeconf.column(type).entrySet().iterator(); it2.hasNext();){
Map.Entry<String, Double> e = it2.next();
if (e.getValue() < conflist.get(index-1)) {
it2.remove();
}
}
}

最佳答案

Iterator<Integer> iterator = hmap.values().iterator();
while (iterator.hasNext()) {
if (iterator.next() < threshold) {
iterator.remove();
}
}

当然,如果你使用的是 Java 8,那就简单多了:

hmap.values().removeIf(value -> value < threshold);

表格的工作方式完全相同;只需使用 table.values() 而不是 hmap.values()

关于java - 按满足一定条件的值移除元素,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33134499/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com