作者:翔_至死不渝 | 来源:互联网 | 2024-10-16 08:56
importjava.util.*;publicclassStringArrayUtil{求两个字符串数组的并集,利用set的元素唯一性publicstaticString[]un
import java.util.*;
public class StringArrayUtil {//求两个字符串数组的并集,利用set的元素唯一性
public static String[] union(String[] arr1, String[] arr2) {
Set set = new HashSet<>();
Collections.addAll(set, arr1);
Collections.addAll(set, arr2);
String[] result={};returnset.toArray(result);
}//求两个数组的交集
public static String[] intersect(String[] arr1, String[] arr2) {
Map map = new HashMap<>();
LinkedList list = new LinkedList<>();for(String str : arr1) {if (!map.containsKey(str)) {
map.put(str, Boolean.FALSE);
}
}for(String str : arr2) {if(map.containsKey(str)) {
map.put(str, Boolean.TRUE);
}
}for (Map.Entrye : map.entrySet()) {if(e.getValue().equals(Boolean.TRUE)) {
list.add(e.getKey());
}
}
String[] result={};returnlist.toArray(result);
}//求两个数组的差集
public static String[] minus(String[] arr1, String[] arr2) {
LinkedList list = new LinkedList<>();
LinkedList history = new LinkedList<>();
String[] lOngerArr=arr1;
String[] shorterArr=arr2;//找出较长的数组来减较短的数组
if (arr1.length >arr2.length) {
lOngerArr=arr2;
shorterArr=arr1;
}for(String str : longerArr) {if (!list.contains(str)) {
list.add(str);
}
}for(String str : shorterArr) {if(list.contains(str)) {
history.add(str);
list.remove(str);
}else{if (!history.contains(str)) {
list.add(str);
}
}
}
String[] result={};returnlist.toArray(result);
}
}