zoukankan      html  css  js  c++  java
  • Judge

    1. 循环list中的所有元素然后删除重复 

    [java] view plaincopy
     
    1. public   static   List  removeDuplicate(List list)  {     
    2.   for  ( int  i  =   0 ; i  <  list.size()  -   1 ; i ++ )  {     
    3.       for  ( int  j  =  list.size()  -   1 ; j  >  i; j -- )  {     
    4.            if  (list.get(j).equals(list.get(i)))  {     
    5.               list.remove(j);     
    6.             }      
    7.         }      
    8.       }      
    9.     return list;     
    10. }    

    2. 通过HashSet踢除重复元素

    [c-sharp] view plaincopy
     
    1. public   static   List  removeDuplicate(List list)  {     
    2.     HashSet h  =   new  HashSet(list);     
    3.     list.clear();     
    4.     list.addAll(h);     
    5.     return list;     
    6. }     

    在groovy中当然也可以使用上面的两种方法, 但groovy自己提供了unique方法来去除重复数据 

    [c-sharp] view plaincopy
     
    1. def list = [1, 2, 3, 2, 4, 1, 5]     
    2. list.unique()  // [1, 2, 3, 4, 5]  
  • 相关阅读:
    爬虫
    Django
    python多线程
    python基础
    深度学习_1_Tensorflow_1
    人工智能_5_决策树_随机森林
    人工智能_4_k近邻_贝叶斯_模型评估
    人工智能_3_机器学习_概述
    Python re 模块
    Python函数式编程
  • 原文地址:https://www.cnblogs.com/a757956132/p/4287812.html
Copyright © 2011-2022 走看看