集合運算工具

集合運算 集合運算:求交集,並集,差集。以及求子集和補集。(圖片來自百科) 工具類 import java.util.*; class SetUtil { // 並集 static <T> Set<T> union(Set<T> a, Set<T> b) { Set<T> unionSet = new LinkedHashSet<T>(a); unionSet.addAll(b);
相關文章
相關標籤/搜索