gpt4 book ai didi

ruby - 有没有办法通过 sort/sort_by 更改散列的键?

转载 作者:行者123 更新时间:2023-12-01 01:40:00 25 4
gpt4 key购买 nike

目前正在解决一个试图让我将前者转变为后者的问题

{ a: 2, b: 5, c: 1 } => { a: 1, b: 2, c: 5 }

试图做到这一点
hash = { a: 2, b: 5, c: 1 }.sort_by {|k,v| v}.to_h

这给了这个 => {:c=>1, :a=>2, :b=>5}
如何在对值进行排序的同时更改散列的键?

最佳答案

看起来您正在尝试将散列拆分为键和值,分别对每个键和值进行排序,然后将它们作为散列重新组合在一起。

在这种情况下,您可以执行以下操作:

hash.to_a.transpose.map(&:sort).transpose.to_h

一步一步的工作是这样的:
# First array-ify the hash into key/value pairs
hash.to_a
# [[:a, 2], [:b, 5], [:c, 1]]

# Then transpose to group the keys and values together
hash.to_a.transpose
# [[:a, :b, :c], [2, 5, 1]]

# Then sort the keys and values separately
hash.to_a.transpose.map(&:sort)
# [[:a, :b, :c], [1, 2, 5]]

# And transpose again to get key/value pairs
hash.to_a.transpose.map(&:sort).transpose
# [[:a, 1], [:b, 2], [:c, 5]]

# And combine the array of key/value pairs into a hash
hash.to_a.transpose.map(&:sort).transpose.to_h
# {:a=>1, :b=>2, :c=>5}

您也可以手动执行 hash.to_a.transpose步骤如下:
[hash.keys, hash.values].map(&:sort).transpose.to_h

您甚至不必假设 #keys#values将按任何特定顺序生成数组,因为您无论如何都要对所有内容进行排序。

关于ruby - 有没有办法通过 sort/sort_by 更改散列的键?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59258467/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com