List set to remove duplicate data

Source: Internet
Author: User
Tags addall
[Conversion] Java list set to remove duplicate data

1. Loop all elements in the list and delete duplicates

public   static   List  removeDuplicate(List 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);                   }                }              }            return list;       }  

2. Use hashset to remove duplicate elements

public static List removeDuplicate(List list) {       HashSet h = new HashSet(list);       list.clear();       list.addAll(h);       return list;   }   

3. Delete repeated elements in the arraylist in order

// 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 );}

4. traverse the objects in the list and use list. contain (). If it does not exist, store the objects in another list set.

public static List removeDuplicate(List list){          List listTemp = new ArrayList();          for(int i=0;i<list.size();i++){              if(!listTemp.contains(list.get(i))){                  listTemp.add(list.get(i));              }          }          return listTemp;      }  

Reprinted: http://blog.csdn.net/u011728105/article/details/46594963

List set to remove duplicate data

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.