Improve performance of `Array#uniq!`.

parent 5ec5a41f
...@@ -41,19 +41,22 @@ class Array ...@@ -41,19 +41,22 @@ class Array
# c.uniq! { |s| s.first } # => [["student", "sam"], ["teacher", "matz"]] # c.uniq! { |s| s.first } # => [["student", "sam"], ["teacher", "matz"]]
# #
def uniq!(&block) def uniq!(&block)
ary = self.dup
result = []
if block if block
hash = {} hash = {}
while ary.size > 0 self.each do |val|
val = ary.shift
key = block.call(val) key = block.call(val)
hash[key] = val unless hash.has_key?(key) hash[key] = val unless hash.key?(key)
end end
hash.each_value do |value| result = hash.values
result << value elsif self.size > 20
hash = {}
self.each do |val|
hash[val] = val
end end
result = hash.values
else else
ary = self.dup
result = []
while ary.size > 0 while ary.size > 0
result << ary.shift result << ary.shift
ary.delete(result.last) ary.delete(result.last)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment