如何比较行的txt文件行?

时间:2016-04-18 00:06:54

标签: java arrays text double line

此处有文件:http://textuploader.com/5y6xh

我已经将.txt文件中的双打安排到数组列表中,以避免任何字符串干扰。

如何将每次双一行与整个数组中的单独双倍进行比较?

1 个答案:

答案 0 :(得分:0)

你可以强迫它

take the first element
loop through the array
return false if the element equals any other element
move to the second element
loop through the array
return false if the element equals any other element
move to the third element
...
After the loop is finished, return true

这个算法基本上是强力搜索,它不是很有效,O(n!),如果我没记错的话,但它会做你需要的。如果你愿意创建一个BST,你可以减少时间,如果你正在寻找双打或整体。