如何找到最大哈希值的key?
我有以下哈希 {"CA"=>2, "MI"=>1, "NY"=>1}
如何使用 ruby 返回最大键值对?我希望它返回“CA”
I have the following hash {"CA"=>2, "MI"=>1, "NY"=>1}
How can I return the maximum key value pair using ruby? I would like it to return "CA"
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(6)
这将根据哈希元素的值返回最大哈希键值对:
This will return max hash key-value pair depending on the value of hash elements:
我发现这样,返回第一个最大值的键
I found this way , return the key of the first max value
另一种方式可能如下:
这会遍历每个键值对,并返回(或在本例中为 put)键,其中值等于所有值的最大值。如果存在平局,这应该返回多个键。
Another way could be as follows:
This runs through each key-value pair and returns (or in this case puts's) the key(s) where the value is equal to the max of all values. This should return more than one key if there's a tie.
如果你想根据顺序检索多个键值对(第二大、最小等),一种更有效的方法是对哈希进行一次排序,然后得到所需的结果。
最大值的键
获取 max 和 min
第二大键值
对 将哈希数组转换回哈希
If you want to retrieve more than one key value pair based on order(second largest, smallest etc.), a more efficient way will be to sort the hash once and then get the desired results.
Key of largest value
Get max and min
2nd largest key value pair
To convert the hash array back into a hash
我今天在类似的问题上做了这个,最终得到了这个:
对于 Ruby 小于 2.3,你可以用
.try(:last)
替换&.last
如果您的源哈希为空,其中任何一个都只是一种保护措施:
{}
I did this today on a similar problem and ended up with this:
For Ruby less than 2.3 you can replace
&.last
with.try(:last)
Either one is just a safeguard for if your source hash is empty:
{}
这将返回按大小排序的哈希的最后一个键;但是,可能有两个键具有相同的值。
This will return the last key of the hash sorted by size; however, there might be two keys with the same value.