web-dev-qa-db-ja.com

ハッシュ内のキーと値を交換する

Rubyでは、ハッシュ上のキーと値を交換するにはどうすればよいですか?

私は次のハッシュを持っているとしましょう:

{:a=>:one, :b=>:two, :c=>:three}

私が変換したいこと:

{:one=>:a, :two=>:b, :three=>:c}

地図の使用はかなり面倒です。もっと短い解決策はありますか?

142
Jonathan Allard

Rubyにはハッシュのヘルパーメソッドがあり、ハッシュを反転したように扱うことができます。

{a: 1, b: 2, c: 3}.key(1)
=> :a

逆ハッシュを保持したい場合、ほとんどの状況で Hash#invert が機能するはずです。

{a: 1, b: 2, c: 3}.invert
=> {1=>:a, 2=>:b, 3=>:c}

BUT ...

重複する値がある場合、invertは、最後の値を除くすべての値を破棄します。同様に、keyは最初の一致のみを返します。

{a: 1, b: 2, c: 2}.key(2)
=> :b

{a: 1, b: 2, c: 2}.invert
=> {1=>:a, 2=>:c}

そのため、値が一意である場合はHash#invertを使用できます。そうでない場合は、次のようにすべての値を配列として保持できます。

class Hash
  # like invert but not lossy
  # {"one"=>1,"two"=>2, "1"=>1, "2"=>2}.inverse => {1=>["one", "1"], 2=>["two", "2"]} 
  def safe_invert
    each_with_object({}) do |(key,value),out| 
      out[value] ||= []
      out[value] << key
    end
  end
end

注:テスト付きのこのコードは、現在 here です。

または要するに...

class Hash
  def safe_invert
    self.each_with_object({}){|(k,v),o|(o[v]||=[])<<k}
  end
end
257
Nigel Thorne

間違いないでしょう! Rubyで物事を行うためのより短い方法が常にあります!

Hash#invert を使用するだけです。

{a: :one, b: :two, c: :three}.invert
=> {:one=>:a, :two=>:b, :three=>:c}

ほら!

62
Jonathan Allard
files = {
  'Input.txt' => 'Randy',
  'Code.py' => 'Stan',
  'Output.txt' => 'Randy'
}

h = Hash.new{|h,k| h[k] = []} # Create hash that defaults unknown keys to empty an empty list
files.map {|k,v| h[v]<< k} #append each key to the list at a known value
puts h

これにより、重複する値も処理されます。

2
Riaze
# this doesn't looks quite as elegant as the other solutions here,
# but if you call inverse twice, it will preserve the elements of the original hash

# true inversion of Ruby Hash / preserves all elements in original hash
# e.g. hash.inverse.inverse ~ h

class Hash

  def inverse
    i = Hash.new
    self.each_pair{ |k,v|
      if (v.class == Array)
        v.each{ |x|
          i[x] = i.has_key?(x) ? [k,i[x]].flatten : k
        }
      else
        i[v] = i.has_key?(v) ? [k,i[v]].flatten : k
      end
    }
    return i
  end

end

Hash#inverseは以下を提供します:

 h = {a: 1, b: 2, c: 2}
 h.inverse
  => {1=>:a, 2=>[:c, :b]}
 h.inverse.inverse
  => {:a=>1, :c=>2, :b=>2}  # order might not be preserved
 h.inverse.inverse == h
  => true                   # true-ish because order might change

一方、組み込みのinvertメソッドは壊れています。

 h.invert
  => {1=>:a, 2=>:c}    # FAIL
 h.invert.invert == h 
  => false             # FAIL
1
Tilo

キーが一意であるハッシュがある場合は、 Hash#invert を使用できます。

> {a: 1, b: 2, c: 3}.invert
=> {1=>:a, 2=>:b, 3=>:c} 

ただし、一意でないキーがある場合は機能しません。ただし、最後に表示されたキーのみが保持されます。

> {a: 1, b: 2, c: 3, d: 3, e: 2, f: 1}.invert
=> {1=>:f, 2=>:e, 3=>:d}

一意でないキーを持つハッシュがある場合、次を実行できます。

> hash={a: 1, b: 2, c: 3, d: 3, e: 2, f: 1}
> hash.each_with_object(Hash.new { |h,k| h[k]=[] }) {|(k,v), h| 
            h[v] << k
            }     
=> {1=>[:a, :f], 2=>[:b, :e], 3=>[:c, :d]}

ハッシュの値がすでに配列の場合、次のことができます。

> hash={ "A" => [14, 15, 16], "B" => [17, 15], "C" => [35, 15] }
> hash.each_with_object(Hash.new { |h,k| h[k]=[] }) {|(k,v), h| 
            v.map {|t| h[t] << k}
            }   
=> {14=>["A"], 15=>["A", "B", "C"], 16=>["A"], 17=>["B"], 35=>["C"]}
1
dawg

配列を使用する

input = {:key1=>"value1", :key2=>"value2", :key3=>"value3", :key4=>"value4", :key5=>"value5"}
output = Hash[input.to_a.map{|m| m.reverse}]

ハッシュを使用する

input = {:key1=>"value1", :key2=>"value2", :key3=>"value3", :key4=>"value4", :key5=>"value5"}
output = input.invert