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.
2 つの txt ファイルを比較して、内容が同じで順序が異なる場合に比較する方法があるかどうか疑問に思っていました。例えば:
File1: アダム・レイモンド・ロバート
File2: ロバート・アダム・レイモンド
ありがとう、
ファイルを単語に分割し、各単語の出現回数を数えて、結果を比較できます。HashMap<String, Integer>を辞書として使用して単語を保存することもできます。
HashMap<String, Integer>
ファイル内で単語が 2 回繰り返されないことが確実な場合は、a のSortedSet代わりに aを使用して、Mapこれら 2 つの単語を比較できます。
SortedSet
Map