gpt4 book ai didi

Java 8 Streams 修改集合值

转载 作者:行者123 更新时间:2023-12-01 07:24:01 25 4
gpt4 key购买 nike

使用流API;一旦相关数据被过滤,我想编辑正在收集的数据。这是到目前为止的代码:

  String wordUp = word.substring(0,1).toUpperCase() + word.substring(1);
String wordDown = word.toLowerCase();

ArrayList<String> text = Files.lines(path)
.parallel() // Perform filtering in parallel
.filter(s -> s.contains(wordUp) || s.contains(wordDown) && Arrays.asList(s.split(" ")).contains(word))
.sequential()
.collect(Collectors.toCollection(ArrayList::new));

编辑下面的代码很糟糕,我正在努力避免它。(它也不能完全工作。它是在凌晨 4 点完成的,请原谅。)

    for (int i = 0; i < text.size(); i++) {
String set = "";
List temp = Arrays.asList(text.get(i).split(" "));
int wordPos = temp.indexOf(word);

List<String> com1 = (wordPos >= limit) ? temp.subList(wordPos - limit, wordPos) : new ArrayList<String>();
List<String> com2 = (wordPos + limit < text.get(i).length() -1) ? temp.subList(wordPos + 1, wordPos + limit) : new ArrayList<String>();
for (String s: com1)
set += s + " ";
for (String s: com2)
set += s + " ";
text.set(i, set);
}

它正在文本文件中查找特定单词,一旦该行被过滤,我只想每次只收集该行的一部分。正在搜索的关键字两侧的多个单词。

例如:

关键字=“the”限制=1

它会发现:“清晨,一头牛跳过了栅栏。”

然后它应该返回:“早上”

*附注任何建议的速度改进都将被投票。

最佳答案

您应该考虑两个不同的任务。首先,将文件转换为单词列表:

List<String> words = Files.lines(path)
.flatMap(Pattern.compile(" ")::splitAsStream)
.collect(Collectors.toList());

这使用了您最初分割空格字符的想法。对于简单的任务来说,这可能足够了,但是,您应该学习 the documentation of BreakIterator了解这种简单方法与真正复杂的单词边界分割之间的区别。

其次,如果您有一个单词列表,您的任务是找到您的单词的匹配项,并将匹配项周围的项目序列转换为单个匹配String:使用单个空格字符作为分隔符连接单词:

List<String> matches=IntStream.range(0, words.size())
// find matches
.filter(ix->words.get(ix).matches(word))
// create subLists around the matches
.mapToObj(ix->words.subList(Math.max(0, ix-1), Math.min(ix+2, words.size())))
// reconvert lists into phrases (join with a single space
.map(list->String.join(" ", list))
// collect into a list of matches; here, you can use a different
// terminal operation, like forEach(System.out::println), as well
.collect(Collectors.toList());

关于Java 8 Streams 修改集合值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28942076/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com