- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
想象一个像这样的字符串:
#*****~~~~~~****************~~~~~~~~~************ ******************#
我正在寻找一种优雅的方法来查找包含特定字符的最长连续部分的索引。假设我们正在搜索 *
字符,那么我希望该方法返回 *
最后一个长部分的开始和结束索引。
我正在寻找一种优雅的方式,我知道我可以通过检查类似的内容来暴力破解
indexOf(*)
lastIndexOf(*)
//Check if in between the indices is something else if so, remember length start from new
//substring and repeat until lastIndex reached
//Return saved indices
这真是丑陋的蛮力 - 还有更优雅的方法吗?我考虑了正则表达式组并比较它们的长度。但如何获得索引呢?
最佳答案
如果您不想硬编码特定字符,例如*
,并查找“查找重复字符的最长部分”作为问题的标题指出,那么重复字符部分的正确正则表达式将是:
"(.)\\1*"
其中 (.)
是由单个字符组成的组,\\1
是 backreference that 指的是该组。 *
是贪婪的 quantifier ,这意味着主导反向引用可以重复零次或多次。
最后,"(.)\\1*"
捕获后续相同字符的序列。
现在要使用它,我们需要将正则表达式编译为Pattern
。此操作有成本,因此如果多次使用正则表达式,则声明一个常量是明智的:
public static final Pattern REPEATED_CHARACTER_SECTION =
Pattern.compile("(.)\\1*");
利用现代 Java 的特性,只需一行代码就可以找到与上述模式匹配的最长序列。
从 Java 9 开始,我们有了方法 Matcher.results()
返回 MatchResult
的流对象,描述匹配组。
MatchResult.start()
MatchResult.end()
公开访问组的开始和结束索引的方式。要提取组本身,我们需要调用 MatchResult.group()
.
实现的样子:
public static void printLongestRepeatedSection(String str) {
String longestSection = REPEATED_CHARACTER_SECTION.matcher(str).results() // Stream<MatchResult>
.map(MatchResult::group) // Stream<String>
.max(Comparator.comparingInt(String::length)) // find the longest string in the stream
.orElse(""); // or orElseThrow() if you don't want to allow an empty string to be received as an input
System.out.println("Longest section:\t" + longestSection);
}
main()
public static void printLongestRepeatedSection(String str) {
MatchResult longestSection = REPEATED_CHARACTER_SECTION.matcher(str).results() // Stream<MatchResult>
.max(Comparator.comparingInt(m -> m.group().length())) // find the longest string in the stream
.orElseThrow(); // would throw an exception is an empty string was received as an input
System.out.println("Section start: " + longestSection.start());
System.out.println("Section end: " + longestSection.end());
System.out.println("Longest section: " + longestSection.group());
}
输出:
Section start: 34
Section end: 61
Longest section: ***************************
链接:
官方教程Lambda expressions和 Stream API由Oracle提供
关于 Regular expressions 的快速教程
您可以在不使用正则表达式的情况下通过手动迭代给定字符串的索引并检查前一个字符是否与当前字符匹配来完成此操作。
您只需要维护几个变量来表示之前遇到的最长部分的开始和结束,以及一个变量来存储当前正在检查的部分的起始索引。
这就是它的实现方式:
public static void printLongestRepeatedSection(String str) {
if (str.isEmpty()) throw new IllegalArgumentException();
int maxStart = 0;
int maxEnd = 1;
int curStart = 0;
for (int i = 1; i < str.length(); i++) {
if (str.charAt(i) != str.charAt(i - 1)) { // current and previous characters are not equal
if (maxEnd - maxStart < i - curStart) { // current repeated section is longer then the maximum section discovered previously
maxStart = curStart;
maxEnd = i;
}
curStart = i;
}
}
if (str.length() - curStart > maxEnd - maxStart) { // checking the very last section
maxStart = curStart;
maxEnd = str.length();
}
System.out.println("Section start: " + maxStart);
System.out.println("Section end: " + maxEnd);
System.out.println("Section: " + str.substring(maxStart, maxEnd));
}
main()
public static void main(String[] args) {
String source = "#*****~~~~~~**************~~~~~~~~***************************#";
printLongestRepeatedSection(source);
}
输出:
Section start: 34
Section end: 61
Section: ***************************
关于java - 找到最长的重复字符部分,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/74137354/
例如,我有一个父类Author: class Author { String name static hasMany = [ fiction: Book,
代码如下: dojo.query(subNav.navClass).forEach(function(node, index, arr){ if(dojo.style(node, 'd
我有一个带有 Id 和姓名的学生表和一个带有 Id 和 friend Id 的 Friends 表。我想加入这两个表并找到学生的 friend 。 例如,Ashley 的 friend 是 Saman
我通过互联网浏览,但仍未找到问题的答案。应该很容易: class Parent { String name Child child } 当我有一个 child 对象时,如何获得它的 paren
我正在尝试创建一个以 Firebase 作为我的后端的社交应用。现在我正面临如何(在哪里?)找到 friend 功能的问题。 我有每个用户的邮件地址。 我可以访问用户的电话也预订。 在传统的后端中,我
我主要想澄清以下几点: 1。有人告诉我,在 iOS 5 及以下版本中,如果您使用 Game Center 设置多人游戏,则“查找 Facebook 好友”(如与好友争夺战)的功能不是内置的,因此您需要
关于redis docker镜像ENTRYPOINT脚本 docker-entrypoint.sh : #!/bin/sh set -e # first arg is `-f` or `--some-
我是一名优秀的程序员,十分优秀!