JAVA兩個數組間元素的比較(找出相同或者不同元素)


JAVA兩個數組間元素的比較(找出相同或者不同元素)

轉載自  https://blog.csdn.net/qq_35792598/article/details/76149552

1,找出兩個數組中相同的元素

public static Set<Integer> getIds(Integer[] a, Integer[] b){ Set<Integer> same = new HashSet<Integer>(); //用來存放兩個數組中相同的元素 Set<Integer> temp = new HashSet<Integer>(); //用來存放數組a中的元素 for (int i = 0; i < a.length; i++) { temp.add(a[i]); //把數組a中的元素放到Set中,可以去除重復的元素 } for (int j = 0; j < b.length; j++) { //把數組b中的元素添加到temp中 //如果temp中已存在相同的元素,則temp.add(b[j])返回false if(!temp.add(b[j])) same.add(b[j]); } return same; } public static void main(String[] arg){ Integer[] array1 = {1,2,3,4,1,2,4,6,7,8,10,22,33}; Integer[] array2 = {1,2,3,4,1,2,4,6,7,8,10,22,33,55,66,77,88,99}; Set<Integer> sameElementSet = getIds(array1,array2); for(Integer i : sameElementSet) { System.out.println(i); } } 

 

輸出:



33 



22 


10

2,找出兩個數組中不相同的元素

public static <T> List<T> compare(T[] t1, T[] t2) { List<T> list1 = Arrays.asList(t1); //將t1數組轉成list數組 List<T> list2 = new ArrayList<T>();//用來存放2個數組中不相同的元素 for (T t : t2) { if (!list1.contains(t)) { list2.add(t); } } return list2; } public static void main(String[] arg){ Integer[] array1 = {1, 2, 3}; Integer[] array2 = {1, 2, 3, 4,44}; List<Integer> list = compare(array1,array2); for (Integer integer : list) { System.out.println(integer); } } 

 

 

輸出:


44

補充

比較2個數組不相同的元素, 應該遍歷多的, 然后在遍歷中拿少的跟多的比較。 
for (T t : 多) { 
if (!少.contains(t)) { 
不相同的集合.add(t); 


其中 : 
多 為 多的集合 
少 為 少的集合 
t 為 多的集合的元素 
不相同的集合 為 放不相同元素的集合


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM