0

我有一个算法,可以在 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​​ 表示一个列表?

4

1 回答 1

2

Ruby 中的列表称为数组

arr = []
arr.push(0) # => [0]
arr.concat([1,2,3]) # => [0, 1, 2, 3]
arr2d = [[0,0],[0,1],[1,0],[1,1]]

还有一种Matrix 类型可能更有效,并且可能有更多感兴趣的操作。

require 'matrix'
matrix = Matrix[[0,0],[0,1],[1,0],[1,1]]
matrix[0,0] # => 0
于 2012-12-19T22:26:35.447 回答