Collection operations for Java (intersection, set, difference) collation

Source: Internet
Author: User

/**
* Find the difference set of LS to LS2, that is, LS, but not in the LS2
*
* @param ls
* @param LS2
* @return
*/
public static list diff (list ls, list ls2) {
List List = new ArrayList (arrays.aslist (New Object[ls.size ()));
Collections.copy (list, LS);
List.removeall (LS2);
return list;
}

   /**
     * Find the intersection of 2 sets
     *
      * @param ls
     * @param ls2
     * @return
      */
    public static list intersect (list ls, list ls2) {
         list = new ArrayList (arrays.aslist (New Object[ls.size ()));
        collections.copy (list, LS);
        List.retainall (LS2);
        return list;
   }

/**
* Find a set of 2 sets
*
* @param ls
* @param LS2
* @return
*/
public static list Union (list ls, list ls2) {
List List = new ArrayList (arrays.aslist (New Object[ls.size ()));
Collections.copy (list, LS);//Copy the value of LS to the list
List.removeall (LS2);
List.addall (LS2);
return list;
}

Collection operations for Java (intersection, set, difference) collation

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.