gpt4 book ai didi

java - 2个字符串文件的交集 - java

转载 作者:行者123 更新时间:2023-12-02 06:26:38 25 4
gpt4 key购买 nike

我有 2 个带有字符串行的文件,我必须找到属于这两个文件的行数。

我该怎么做?

例如 -文件1:

aaa 
bbb
ccc

文件2:

bbb
eee
aaa

结果应该是2

最佳答案

您将 file1 中的所有行读取到 Set 中,然后检查它是否已包含 file2 中的行:

 Set<String> linesFile1 = ... read in your lines
for (String line : file2) { // add each line from file2 and check if it was already in the set
if (linesFile1.contains(line)) {
counter++;
}
}

关于java - 2个字符串文件的交集 - java,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20455765/

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