代码
def nested_hash(keys, v, h={})
return subhash(keys, v) if h.empty?
return h.merge(subhash(keys, v)) if keys.size == 1
keys[0..-2].reduce(h) { |g,k| g[k] }.update(keys[-1]=>v)
h
end
def subhash(keys, v)
*first_keys, last_key = keys
h = { last_key=>v }
return h if first_keys.empty?
first_keys.reverse_each.reduce(h) { |g,k| g = { k=>g } }
end
例子
h = nested_hash([:a, :b, :c], 14) #=> {:a=>{:b=>{:c=>14}}}
i = nested_hash([:a, :b, :d], 25, h) #=> {:a=>{:b=>{:c=>14, :d=>25}}}
j = nested_hash([:a, :b, :d], 99, i) #=> {:a=>{:b=>{:c=>14, :d=>99}}}
k = nested_hash([:a, :e], 104, j) #=> {:a=>{:b=>{:c=>14, :d=>99}, :e=>104}}
nested_hash([:f], 222, k) #=> {:a=>{:b=>{:c=>14, :d=>99}, :e=>104}, :f=>222}
观察 的值:d
在 的计算中被覆盖j
。另请注意:
subhash([:a, :b, :c], 12)
#=> {:a=>{:b=>{:c=>12}}}
这会改变 hash h
。如果不需要,可以插入该行
f = Marshal.load(Marshal.dump(h))
在该行之后return subhash(keys, v) if h.empty?
并将后续引用更改为h
to f
。Marshal模块中的方法可用于创建哈希的深层副本,因此原始哈希不会被改变。