博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
数组中连续重复数据删选且记下所在索引-demo
阅读量:5812 次
发布时间:2019-06-18

本文共 1399 字,大约阅读时间需要 4 分钟。

转载自  这个问题中的一个回复,感谢大哥

public static void main(String[] args) {
List
list = Arrays.asList("a", "b", "a", "a", "a", "d", "d", "b"); HashMap
map = new HashMap<>(15); Iterator
it = list.iterator(); if (!it.hasNext()) {
System.out.println("集合中没有元素!"); } String s = it.next(); if (s == null) {
s = "空字符串"; } int cont = 0; int index = 0; while (it.hasNext()) {
String temp = it.next(); if (temp == null) {
temp = "空字符串"; } if (s.equals(temp)) {
cont++; } else {
System.out.println("\"" + s + "\"出现了" + (cont + 1) + "次"); indexMapBuild(cont, index, s, map); s = temp; cont = 0; } index++; } System.out.println("\"" + s + "\"出现了" + (cont + 1) + "次"); indexMapBuild(cont, index, s, map); } private static void indexMapBuild(int cont, int index, String s, HashMap
map) {
if (cont + 1 >= 2) {
System.out.println("所在的开始索引:" + (index - cont)); System.out.println("所在的结束索引:" + index); ArrayList
indexList = new ArrayList<>(); indexList.add(index - cont); indexList.add(index); map.put(s, indexList); } }

转载于:https://www.cnblogs.com/linzhang0-0/p/11050230.html

你可能感兴趣的文章
数据结构——串的朴素模式和KMP匹配算法
查看>>
FreeMarker-Built-ins for strings
查看>>
验证DataGridView控件的数据输入
查看>>
POJ1033
查看>>
argparse - 命令行选项与参数解析(转)
查看>>
一维数组
查看>>
Linux学习笔记之三
查看>>
CentOS 6.6 FTP install
查看>>
图解Ajax工作原理
查看>>
oracle导入导出小记
查看>>
聊一聊log4j2配置文件log4j2.xml
查看>>
NeHe OpenGL教程 第七课:光照和键盘
查看>>
修改上一篇文章的node.js代码,支持默认页及支持中文
查看>>
Php实现版本比较接口
查看>>
删除设备和驱动器中软件图标
查看>>
第四章 TCP粘包/拆包问题的解决之道---4.1---
查看>>
html语言
查看>>
从源码看集合ArrayList
查看>>
spring-boot支持websocket
查看>>
菜鸟笔记(一) - Java常见的乱码问题
查看>>