溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

Java之Set交集,差集,并集怎么使用

發(fā)布時間:2023-05-04 11:36:49 來源:億速云 閱讀:126 作者:iii 欄目:開發(fā)技術(shù)

今天小編給大家分享一下Java之Set交集,差集,并集怎么使用的相關(guān)知識點,內(nèi)容詳細,邏輯清晰,相信大部分人都還太了解這方面的知識,所以分享這篇文章給大家參考一下,希望大家閱讀完這篇文章后有所收獲,下面我們一起來了解一下吧。

    Java之Set 交集,差集,并集

    /**
     * Created by yuhui on 2017/7/11 0011.
     */
    import java.util.HashSet;
    import java.util.Set;
    public class TestSet {
        public static void main(String[] args) {
            Set<String> result = new HashSet<String>();
            Set<String> set1 = new HashSet<String>() {
                {
                    add("王者榮耀");
                    add("英雄聯(lián)盟");
                    add("穿越火線");
                    add("地下城與勇士");
                }   
            };
            Set<String> set2 = new HashSet<String>() {
                {
                    add("王者榮耀");
                    add("地下城與勇士");
                    add("魔獸世界");
                }
            };
            result.clear();
            result.addAll(set1);
            result.retainAll(set2);
            System.out.println("交集:" + result);
            result.clear();
            result.addAll(set1);
            result.removeAll(set2);
            System.out.println("差集:" + result);
            result.clear();
            result.addAll(set1);
            result.addAll(set2);
            System.out.println("并集:" + result);
        }
    }

    結(jié)果如下:

    交集:[王者榮耀, 地下城與勇士] 
    差集:[英雄聯(lián)盟, 穿越火線] 
    并集:[王者榮耀, 英雄聯(lián)盟, 魔獸世界, 地下城與勇士, 穿越火線]

    java8 list<bean>交集差集并集

    定義bean

    public class Student {
        private String Id ;
        private String name;
        private String age;
        public void setAge(String age) {
            this.age = age;
        }
        public String getAge() {
            return age;
        }
        public String getId() {
            return Id;
        }
        public String getName() {
            return name;
        }
        public void setId(String id) {
            Id = id;
        }
        public void setName(String name) {
            this.name = name;
        }
    }

    定義兩個list

    list 1

    List<Student> list1 = new ArrayList<Student>();
    Student st1 = new Student();
    st1.setId("2");
    st1.setName("");
    st1.setAge("");
    list1.add(st1);
    Student sta = new Student();
    sta.setId("1");
    sta.setName("");
    sta.setAge("");
    list1.add(sta);

    list 2

    List<Student> list2 = new ArrayList<Student>();
    Student st2 = new Student();
    st2.setId("2");
    st2.setName("");
    st1.setAge("");
    list2.add(st2);
    找出id存在list1不存在list2的數(shù)據(jù)——差集 (list1 - list2)
    // 差集 (list1 - list2)
    List<Student> distinctByUniqueList = list1.stream() 
                                         .filter(item -> !list2.stream()
                                                .map(e -> e.getId() )
                                                .collect(Collectors.toList())
                                         .contains(item.getId()))
                                         .collect(Collectors.toList());

    結(jié)果:
    System.out.println("---差集 reduce1 (list1 - list2)---");
    for(Student st : distinctByUniqueList){
        System.out.println(st.getId());
        System.out.println(st.getName());
    }

    ---差集 reduce1 (list1 - list2)---
    1

    找出id存在list1同時存在list2的數(shù)據(jù)&mdash;&mdash;交集

    List<Student> intersection = list1.stream()
                                .filter(item -> list2.stream()
                                        .map(e -> e.getId())
                                      .collect(Collectors.toList())
                                      .contains(item.getId()))
                                .collect(Collectors.toList());

    結(jié)果:
    System.out.println("---交集 intersection---");
    for(Student st : intersection){
        System.out.println(st.getId());
        System.out.println(st.getName());
    }

    ---交集 intersection---
    2

    獲取distinctByUniqueList 與intersection并集

    List<Student> add1 = istinctByUniqueList.parallelStream().collect(toList());
    List<Student> add2 = intersection.parallelStream().collect(toList());
    add1.addAll(add2);

    結(jié)果:

    結(jié)果:
    System.out.println("---并集 listAll---");
     for(Student st : add1){
         System.out.println(st.getId());
         System.out.println(st.getName());
     }
     
     ---并集 listAll---
    2

    1

    源碼

    import java.util.ArrayList;
    import java.util.List;
    import java.util.stream.*;
    import static java.util.stream.Collectors.toList;
    public class test {
        public static void main(String[] args) {
            List<Student> list1 = new ArrayList<Student>();
            Student st1 = new Student();
            st1.setId("2");
            st1.setName("");
            st1.setAge("");
            list1.add(st1);
            Student sta = new Student();
            sta.setId("1");
            sta.setName("");
            sta.setAge("");
            list1.add(sta);
            List<Student> list2 = new ArrayList<Student>();
            Student st2 = new Student();
            st2.setId("3");
            st2.setName("");
            st1.setAge("");
            list2.add(st2);
            // 差集 (list1 - list2)
            List<Student> distinctByUniqueList = list1.stream()
                                                .filter(item -> !list2.stream()
                                                       .map(e -> e.getId() )
                                                       .collect(Collectors.toList())
                                                .contains(item.getId()))
                                                .collect(Collectors.toList());
            System.out.println("---差集 reduce1 (list1 - list2)---");
            for(Student st : distinctByUniqueList){
                System.out.println(st.getId());
                System.out.println(st.getName());
            }
            // 交集
            List<Student> intersection = list1.stream()
                                         .filter(item -> list2.stream()
                                                 .map(e -> e.getId())
                                                 .collect(Collectors.toList())
                                                 .contains(item.getId()))
                                         .collect(Collectors.toList());
            System.out.println("---交集 intersection---");
            for(Student st : intersection){
                System.out.println(st.getId());
                System.out.println(st.getName());
            }
            List<Student> add1 = distinctByUniqueList.parallelStream().collect(toList());
            List<Student> add2 = intersection.parallelStream().collect(toList());
            add1.addAll(add2);
            System.out.println("---并集 listAll---");
            for(Student st : add1){
                System.out.println(st.getId());
                System.out.println(st.getName());
            }
        }
    }

    以上就是“Java之Set交集,差集,并集怎么使用”這篇文章的所有內(nèi)容,感謝各位的閱讀!相信大家閱讀完這篇文章都有很大的收獲,小編每天都會為大家更新不同的知識,如果還想學(xué)習更多的知識,請關(guān)注億速云行業(yè)資訊頻道。

    向AI問一下細節(jié)

    免責聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

    AI