Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想知道是否有一种方法可以比较两个 txt 文件以比较它们是否具有相同的内容但顺序不同。例如:
档案1:亚当·雷蒙德·罗伯特
File2:罗伯特·亚当·雷蒙德
谢谢,
您可以将文件拆分为单词并计算每个单词的出现次数,然后比较结果。您可能希望使用 aHashMap<String, Integer>作为字典来存储您的单词。
HashMap<String, Integer>
如果您确定文件中没有单词可以重复两次,则可以使用 aSortedSet代替 aMap并比较这两者。
SortedSet
Map