优雅的找出ArrayList中重复的元素

前些天发现了一个巨牛的人工智能学习网站,通俗易懂,风趣幽默,忍不住分享一下给大家。点击跳转到教程。

方法1

代码:

public class Main {  public static void main(String[] args){  List<String> list = new ArrayList<String>();  list.add("aaa");  list.add("bbb");  list.add("ccc");  list.add("ddd");  list.add("aaa");  list.add("aaaa");  list.add("eee");  list.add("bbb");  list.add("ccc");  StringBuilder builder = new StringBuilder();  for(String str : list) {  // 如果不存在返回 -1。  if(builder.indexOf(","+str+",") > -1) {  System.out.println("重复的有:"+str);  } else {  builder.append(",").append(str).append(",");  }  }  }  
}  

 

运行结果:

 

重复的有:aaa
重复的有:bbb
重复的有:ccc

方法2

代码如下:

public class Main {  public static void main(String[] args){  List<String> list=new ArrayList<String>();  list.add("string1");  list.add("string2");  list.add("string3");  list.add("string1");  list.add("string1");  list.add("string1");  list.add("string2");  //list.add("string3");  Map<String,Integer> hashMap=new HashMap<String, Integer>();  for(String string:list){  if(hashMap.get(string)!=null){  //hashMap包含遍历list中的当前元素  Integer integer=hashMap.get(string);  hashMap.put(string,integer+1);  System.out.println("the element:"+string+" is repeat");  }  else{  hashMap.put(string,1);  }  }  }  
}  

 

运行结果:

 

the element:string1 is repeat
the element:string1 is repeat
the element:string1 is repeat
the element:string2 is repeat

方法3

 因为我没有用java8,所以idea不支持stream,所有此方法没有验证,暂时保存啦。

代码如下:

public class Main {  public static <E> List<E> getDuplicateElements(List<E> list) {  return list.stream() // list 对应的 Stream  .collect(Collectors.toMap(e -> e, e -> 1, (a, b) -> a + b)) // 获得元素出现频率的 Map,键为元素,值为元素出现的次数  .entrySet().stream() // 所有 entry 对应的 Stream  .filter(entry -> entry.getValue() > 1) // 过滤出元素出现次数大于 1 的 entry  .map(entry -> entry.getKey()) // 获得 entry 的键(重复元素)对应的 Stream  .collect(Collectors.toList());  // 转化为 List  }  public static void main(String[] args) throws Exception {  List<String> list = Arrays.asList("a", "b", "c", "d", "a", "a", "d", "d");  List<String> duplicateElements = getDuplicateElements(list);  System.out.println("list 中重复的元素:" + duplicateElements);  }  }  

 

运行结果:

 

list 中重复的元素:[a,d]

 

方法4

public class Test {  public static void main(String[] args) {  List<String> strings = new ArrayList<>();  strings.add("1");  strings.add("2");  strings.add("2");  strings.add("3");  strings.add("3");  strings.add("3");  Set<String> set = new HashSet<>();  Set<String> exist = new HashSet<>();  for (String s : strings) {  if (set.contains(s)) {  exist.add(s);  } else {  set.add(s);  }  }  System.out.println("重复的值:" + String.join(", ", exist));  }  }  

 

转自:https://blog.csdn.net/Lin_88zq/article/details/72677040

 

https://blog.csdn.net/caoxiaohong1005/article/details/54286384

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/449148.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

全球通吃的九大黄金专业

出国留学的同学在选专业时尤其摇摆不定&#xff0c;选择时需要根据以后的就业发展来挑选适合自己的专业。专业选择得当与否&#xff0c;决定着留学生回国发展是否顺利&#xff0c;决定着巨额投资是否物有所值&#xff0c;以下九类比较有发展潜力的黄金留学专业&#xff0c;供大…

C语言里最基础的关键字

内建类型&#xff1a; void、char、short、int、long、float、double 自建类型&#xff1a; struct、union、enum、sizeof 类型限定符&#xff1a; auto、const、static、volatile、register、extern、typedef、signed、unsigned 分支&#xff1a; if、else、switch、case、def…

mysql 行转列 (结果集以坐标显示)

create table capacity(type int ,numbers int ,monthst INT ); select type, sum(case monthst when 1 then numbers else 0 end ) 一月, sum(case monthst when 2 then numbers else 0 end ) 二月, sum(case monthst when 3 then numbers else 0 end ) 三月, sum(case months…

(五)springcloud微服务分布式云架构 - 云架构代码结构构建

上一篇介绍了《整合spring cloud云服务架构 - 企业分布式微服务云架构图》&#xff0c;本篇我们根据架构图进行代码的构建。根据微服务化设计思想&#xff0c;结合spring cloud一些优秀的项目&#xff0c;如服务发现、治理、配置化管理、路由负载、安全控制等优秀解决方案&…

FastJson 中 jsonArray 转换成 list 集合的方法

前些天发现了一个巨牛的人工智能学习网站&#xff0c;通俗易懂&#xff0c;风趣幽默&#xff0c;忍不住分享一下给大家。点击跳转到教程。 今天在写代码时候&#xff0c;遇到了需要将json文本改成jsonobject对象&#xff0c;然后将jsonobject对象转换成jsonArray数组&#xff…

信用卡使用十年的心得体会(图)

从第一张信用卡开卡以来&#xff0c;用卡也十多年了。一共用过三家银行的信用卡&#xff0c;分别是&#xff1a;招商银行、建设银行和交通银行。 谈不上用卡达人&#xff0c;只是将自己这十多年的使用体会&#xff0c;分享给大家吧~ 1、可按自己喜好设置还款日期——第一次…

linux命令编译C语言程序

C语言简介&#xff1a; BCPL->newB->C->UNIX->Linux->gcc C语言专门编写操作系统的语言&#xff0c;所以天生适合对硬件编程&#xff0c;也以运行速度快著称&#xff0c;也非常适合实现数据结构和算法。 由于出现时间过早&#xff0c;有很多缺陷&#xff0c;也…

PHP中插件机制的一种实现方案

插件&#xff0c;亦即Plug-in&#xff0c;是指一类特定的功能模块&#xff08;通常由第三方开发者实现&#xff09;&#xff0c;它的特点是&#xff1a;当你需要它的时候激活它&#xff0c;不需要它的时候禁用/删除它&#xff1b;且无 论是激活还是禁用都不影响系统核心模块的运…

python模块学习之glob模块

glob模块 功能描述&#xff1a;glob模块可以使用Unix shell风格的通配符匹配符合特定格式的文件和文件夹&#xff0c;跟windows的文件搜索功能差不多。glob模块并非调用一个子shell实现搜索功能&#xff0c;而是在内部调用了os.listdir()和fnmatch.fnmatch()。查看我之前写的fn…

根据一个属性,剔除 Json 中重复元素(删除 JSON 中重复的部分)

前些天发现了一个巨牛的人工智能学习网站&#xff0c;通俗易懂&#xff0c;风趣幽默&#xff0c;忍不住分享一下给大家。点击跳转到教程。 [ {"data" : {"code" : "044","post" : "xxx领导", "email" : "…

给生命一个助跑的过程(图)

在高原的上空&#xff0c;常常可以见到秃鹫在翱翔。 秃鹫又叫座山雕&#xff0c;也被人誉为“神鹰”&#xff0c;是高原上体格最大的猛禽。它们往往栖息在海拔2000-5000多米的高山原上&#xff0c;体重达到7-11公斤。秃鹫张开翅膀后&#xff0c;整个身体有2米多长&#xff0c;…

ELK 构建 MySQL 慢日志收集平台详解

ELK 介绍 ELK 最早是 Elasticsearch&#xff08;以下简称ES&#xff09;、Logstash、Kibana 三款开源软件的简称&#xff0c;三款软件后来被同一公司收购&#xff0c;并加入了Xpark、Beats等组件&#xff0c;改名为Elastic Stack&#xff0c;成为现在最流行的开源日志解决方案&…

数据类型转换规则C语言

一、数据类型 为什么对数据进行分类&#xff1a;节约存储空间&#xff0c;提高运行速度。整型&#xff1a;signedsigned char 1 -128~127signed short 2 -32678~32767signed int 4 正负20亿signed long 4/8 正负20亿/9…

Visual Studio 的码云扩展 V1.0.85 发布

开发四年只会写业务代码&#xff0c;分布式高并发都不会还做程序员&#xff1f; >>> Visual Studio 的码云扩展 V1.0.85 已发布&#xff1a; 针对扩展进行了SDK部分的重写修正克隆窗体和快捷方式的图标颜色随主题变化修正快捷方式 优化用户登录和token处理机制调整了…

用 FastJSON 将 JSON 字符串转换为 Map

前些天发现了一个巨牛的人工智能学习网站&#xff0c;通俗易懂&#xff0c;风趣幽默&#xff0c;忍不住分享一下给大家。点击跳转到教程。 本文是利用阿里巴巴封装的FastJSON来转换json字符串的。例子如下&#xff1a; import com.alibaba.fastjson.JSON; import com.aliba…

shark恒破解笔记4-API断点GetPrivateProfileStringA

这小节是通过断在GetPrivateProfileStringA&#xff0c;然后找到注册码的。 1.运行程序输入假码111111&#xff0c;提示重启。通过这判断这是一个重启来验证的&#xff0c;那么它是如何来验证的呢&#xff1f;观察程序目录下会发现有一个名为“config.ini"的文件 那么判断…

开关语句、循环语句、goto

复习&#xff1a; 1、数据类型&#xff1a;signed char 1 %hhd -128~127signed short 2 %hd -32768~32767signed int 4 %d 正负20亿signed long 4 %ldsigned long long 8 %lld 9天开头的19位数unsigned char …

成功男士的健康心理特征

自信&#xff1a;他们普遍都有很强的自信心&#xff0c;有时有咄咄逼人的感觉。 急迫感&#xff1a;他们通常很急地想见到事物的成果&#xff0c;因此会给别人带来许多的压力。他们信仰“时间就是金钱”&#xff0c;不喜欢也不会把宝贵的时间浪费在琐碎的无聊事情上。 脚踏实…

DBlink的创建与删除

创建方式一&#xff1a; create [public] database link link名称 connect to 对方数据库用户identified by 对方数据库用户密码 using 对方数据库ip:端口/服务名; 创建方式二&#xff1a; create [public] database link link名称 connect to 对方数据库用户identified by 对…

kong 启动报错 could not retrieve server_version: timeout

前些天发现了一个巨牛的人工智能学习网站&#xff0c;通俗易懂&#xff0c;风趣幽默&#xff0c;忍不住分享一下给大家。点击跳转到教程。 报错&#xff1a; nginx: [error] init_by_lua error: /usr/local/share/lua/5.1/kong/init.lua:169: [postgres error] could not ret…