zoukankan      html  css  js  c++  java
  • Java基础知识-去重

    java基础知识-去掉list集合中的重复元素:

    思路:

    首先新建一个容器resultList用来存放去重之后的元素

    然后遍历sourceList集合中的元素

    判断所遍历的元素是否已经存在于resultList,如果不存在,则将这个元素加入到resultList中,否则不加。

    通过判断将第二次出现的相同元素过滤掉,只有第一次出现的元素才会被加入到resultList中,这样就得到了sourceList中不重复的元素集合。

    代码如下:

    package test.list;
    
    import java.util.ArrayList;
    import java.util.List;
    
    public class listRemoveRepeat {
        //数组去重
        public static List<Integer> single(List<Integer> sourceList){
            //创建存放结果集的集合
            List<Integer> resultList=new ArrayList<Integer>();
            //循环数据源
            for(int a : sourceList){
                //如果结果集中不存在sourceList中的元素,则将其加入结果集中,已经存在的不加入
                if(!resultList.contains(a)){
                    resultList.add(a);
                }
            }
            return resultList;
        }
        
        public static void main(String[] args) {
            //数据源集合
            List<Integer> sourceList=new ArrayList<Integer>();
            //向需要操作的集合中增加数据
            sourceList.add(1);
            sourceList.add(1);
            sourceList.add(2);
            sourceList.add(2);
            sourceList.add(3);
            sourceList.add(3);
            List<Integer> result = listRemoveRepeat.single(sourceList);
            for(int a:result){
                System.out.println(a);
            }
        }
    }
  • 相关阅读:
    Day 25 网络基础2
    Day 25 网络基础
    Day 24 定时任务
    Day 23 系统服务之救援模式
    Day4 总结
    Day 22 进程管理2之系统的平均负载
    【Distributed】分布式Session一致性问题
    【Distributed】分布式系统中遇到的问题
    【Redis】分布式Session
    【Zookeeper】应用场景概述
  • 原文地址:https://www.cnblogs.com/minshia/p/6297441.html
Copyright © 2011-2022 走看看