2009-03-02 50 views
29

我需要一個集合,就像一個集合。基本上我正在掃描一個很長的字符串並向該集合中添加單詞,但我希望能夠檢測何時有重複。在Ruby中設置?

如果集合不可用,那麼在Ruby中這樣做的最有效方法是什麼?布朗尼例如代碼。

回答

16

documentation

a = [ "a", "a", "b", "b", "c" ] 
a.uniq #gets you ["a", "b", "c"] 
a.uniq.uniq! #gets you nil (no duplicates :) 
+0

是否有類似的東西告訴我數組中有重複項?或者uniq是否有任何回報價值? – alamodey 2009-03-02 11:58:31

5

看看這個網址/core/classes/Set.html了在ruby-doc.org

+0

鏈接不起作用了。它是否從核心API中刪除? – Florin 2011-04-01 06:43:04

+0

鏈接已更新... – 2011-07-02 16:38:56

60

有紅寶石一組類。您可以使用它像這樣:

require 'set' 

set = Set.new 

string = "a very very long string" 

string.scan(/\w+/).each do |word| 
    unless set.add?(word) 
    # logic here for the duplicates 
    end 
end 

雖然,我想知道,如果你想指望在這種情況下下面的例子將是更好的例子:

instances = Hash.new { |h, k| h[k] = 0 } 

string.scan(/\w+/).each do |word| 
    instances[word] += 1 
end