35

我需要一个像集合的集合。基本上我正在扫描一个长字符串并将单词添加到集合中,但我希望能够检测到何时有重复。

如果集合不可用,那么在 Ruby 中执行此操作的最有效方法是什么?布朗尼点示例代码。

4

2 回答 2

74

ruby 中有一个 Set 类。你可以像这样使用它:

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
于 2009-03-02T12:40:33.437 回答
21

文档中:

a = [ "a", "a", "b", "b", "c" ]
a.uniq  #gets you   ["a", "b", "c"]
a.uniq.uniq! #gets you nil (no duplicates :)
于 2009-03-02T11:57:25.350 回答