ruby – 如何索引数组中的重复项?

前端之家收集整理的这篇文章主要介绍了ruby – 如何索引数组中的重复项?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
从以下数组(散列)开始:
[
  {:name=>"site a",:url=>"http://example.org/site/1/"},{:name=>"site b",:url=>"http://example.org/site/2/"},{:name=>"site c",:url=>"http://example.org/site/3/"},{:name=>"site d",{:name=>"site e",{:name=>"site f",:url=>"http://example.org/site/6/"},{:name=>"site g",:url=>"http://example.org/site/1/"}
]

如何添加重复URL的索引,如下所示:

[
  {:name=>"site a",:url=>"http://example.org/site/1/",:index => 1},:url=>"http://example.org/site/2/",:url=>"http://example.org/site/3/",:index => 2},:url=>"http://example.org/site/6/",:index => 3}
]

解决方法

我会使用哈希来跟踪索引.
一次又一次地扫描先前的条目似乎效率低下
counts = Hash.new(0)
array.each { | hash | 
  hash[:index] = counts[hash[:url]] = counts[hash[:url]] + 1
}

还是有点干净

array.each_with_object(Hash.new(0)) { | hash,counts | 
  hash[:index] = counts[hash[:url]] = counts[hash[:url]] + 1
}
原文链接:https://www.f2er.com/ruby/264700.html

猜你在找的Ruby相关文章