服务器之家:专注于服务器技术及软件下载分享
分类导航

PHP教程|ASP.NET教程|Java教程|ASP教程|编程技术|正则表达式|C/C++|IOS|C#|Swift|Android|VB|R语言|JavaScript|易语言|vb.net|

服务器之家 - 编程语言 - Java教程 - Java编程中的HashSet和BitSet详解

Java编程中的HashSet和BitSet详解

2020-08-24 11:03Java教程网 Java教程

这篇文章主要介绍了Java编程中的HashSet和BitSet详解的相关资料,需要的朋友可以参考下

Java编程中的HashSet和BitSet详解

我在Apache的开发邮件列表中发现一件很有趣的事,Apache Commons包的ArrayUtils类的removeElements方法,原先使用的HashSet现在换成了BitSet。

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
HashSet<Integer> toRemove = new HashSet<Integer>();
for (Map.Entry<Character, MutableInt> e : occurrences.entrySet()) {
  Character v = e.getKey();
  int found = 0;
  for (int i = 0, ct = e.getValue().intValue(); i < ct; i++) {
    found = indexOf(array, v.charValue(), found);
    if (found < 0) {
      break;
    }
    toRemove.add(found++);
  }
}
 
 
return (char[]) removeAll((Object)array, extractIndices(toRemove));

新代码如下:

?
1
2
3
4
5
6
7
8
9
10
11
12
13
BitSet toRemove = new BitSet();
for (Map.Entry<Character, MutableInt> e : occurrences.entrySet()) {
  Character v = e.getKey();
  int found = 0;
  for (int i = 0, ct = e.getValue().intValue(); i < ct; i++) {
    found = indexOf(array, v.charValue(), found);
    if (found < 0) {
      break;
    }
    toRemove.set(found++);
  }
}
return (char[]) removeAll(array, toRemove);

为什么会使用BitSet代替HashSet呢?

据Apache Commons作者指出,这样代码执行时可以占用更少的内存,速度也更快。

感谢阅读,希望能帮助到大家,谢谢大家对本站的支持!

延伸 · 阅读

精彩推荐