-2
這裏是檔案:http://textuploader.com/5y6xh如何比較線路的txt文件行?
我已經安排從.txt文件的雙打已經數組列表已經避免任何字符串干擾。
我該如何比較每個雙線一次一條線到單獨的雙下整個陣列?
這裏是檔案:http://textuploader.com/5y6xh如何比較線路的txt文件行?
我已經安排從.txt文件的雙打已經數組列表已經避免任何字符串干擾。
我該如何比較每個雙線一次一條線到單獨的雙下整個陣列?
你可以蠻力它
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,你可以縮短時間,如果你正在尋找雙打或者整數。
帶循環?你知道'while'和for for循環嗎? –
是的,但我如何有效地去行... – zellersko
一個while或for循環通常是O(n),而嵌套for循環將是O(n^2)。 – Colin