如何在 ruby 中构建这个序列?
{
"0" => "00000",
"1" => "00001",
"2" => "00002",
"3" => "00003",
"4" => "00010",
"5" => "00011",
"6" => "00012",
....
"1020" => "33330",
"1021" => "33331",
"1022" => "33332",
"1023" => "33333"
}
如何在 ruby 中构建这个序列?
{
"0" => "00000",
"1" => "00001",
"2" => "00002",
"3" => "00003",
"4" => "00010",
"5" => "00011",
"6" => "00012",
....
"1020" => "33330",
"1021" => "33331",
"1022" => "33332",
"1023" => "33333"
}
你可以做:
nums = Hash.new
0.upto(1023){ |x| nums[x] = x.to_s(4) }
puts nums
基本上 Fixnum.to_s(4) 会将您的基数为 10 的数字转换为基数 4。
更新 - 作为一个班轮
如果你想要一个班轮,你可以这样做:
puts (0..1023).inject({}){ |hash, e| hash[e] = e.to_s(4); hash }
nums = Hash.new { |h, k| "%05d" % Integer( k ).to_s( 4 ) rescue nil }
Hash[1024.times.map {|n| [n.to_s, format('%05d', n.to_s(4))] }]
鉴于总体规律性,我认为您不应该将其保留为哈希值。相反,您应该有一种方法来做到这一点。
class String
def quaternary
to_i.tap{|i| return unless 0 <= i and i <= 1023}.to_s(4).rjust(5, "0")
end
end
"5".quarternary # = > "00011"