我有一个算法,用于存储python中n×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中与字典最接近的数据结构是hash。我需要一些以下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中表示一个列表?
答案 0 :(得分:2)
Ruby中的列表称为Arrays。
arr = []
arr.push(0) # => [0]
arr.concat([1,2,3]) # => [0, 1, 2, 3]
arr2d = [[0,0],[0,1],[1,0],[1,1]]
还有一个Matrix type可能更有效率,可能会有更多感兴趣的操作。
require 'matrix'
matrix = Matrix[[0,0],[0,1],[1,0],[1,1]]
matrix[0,0] # => 0