Removes duplicate values from the list.

Source: Internet
Author: User
Tags addall

 Method 1: Loop element deletion list order not maintained

// Delete the repeated element public static void removeduplicate (list) {for (INT I = 0; I <list. size ()-1; I ++) {for (Int J = List. size ()-1; j> I; j --) {If (list. get (j ). equals (list. get (I) {list. remove (j) ;}} system. out. println (list );}

Method 2: PassHashsetRemove list order not maintained


 

// Delete the repeated element public static void removeduplicate (list) {hashset H = new hashset (list); list. clear (); list. addall (h); system. out. println (list );}

Method 3: Delete repeated elements in arraylist. List order maintained

 

// Delete repeated elements in the arraylist in the order of public static void removeduplicatewithorder (list) {set = new hashset (); List newlist = new arraylist (); for (iterator iter = List. iterator (); ITER. hasnext ();) {object element = ITER. next (); If (set. add (element) newlist. add (element);} List. clear (); list. addall (newlist); system. out. println ("Remove duplicate" + list );}

 

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.