我有一个算法,可以在 python 中存储 n x m 字符矩阵的坐标。例如
a b
c d
将存储为坐标字符对列表:
(0, 0) a (0, 1) b
(1, 0) c (1, 1) d
我的python代码如下
def init_coordination(self):
list_copy = self.list[:]
row = 0
column = 0
coordination = {}
for char in list copy
if column >= self.column:
row += 1
column = 0
coordination[char] = (row, column)
column += 1
return coordination
我正在尝试在 ruby 中实现这个算法,我猜想在 ruby 中最接近字典的数据结构是哈希。我需要一些关于以下 ruby 代码的建议:
def self.init_coordination
position = Hash.new("Coordination of char")
row = 0
column = 0
@list.each do |char|
if column < @column
position[row, column] = char
column = column + 1
elsif column == @column
column = 0
row = row + 1
elsif row == @row
puts position
end
end
另外,我将如何用 ruby 表示一个列表?