0

如何在 ruby​​ 中构建这个序列?

{
"0" => "00000",
"1" => "00001",
"2" => "00002",
"3" => "00003",
"4" => "00010",
"5" => "00011",
"6" => "00012",
....
"1020" => "33330",
"1021" => "33331",
"1022" => "33332",
"1023" => "33333"
}
4

4 回答 4

2

你可以做:

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 }
于 2012-09-13T15:41:25.900 回答
1
nums = Hash.new { |h, k| "%05d" % Integer( k ).to_s( 4 ) rescue nil }
于 2012-09-13T15:58:43.337 回答
0
Hash[1024.times.map {|n| [n.to_s, format('%05d', n.to_s(4))] }]
于 2012-09-13T23:00:53.477 回答
0

鉴于总体规律性,我认为您不应该将其保留为哈希值。相反,您应该有一种方法来做到这一点。

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"
于 2012-09-14T01:02:14.627 回答