开发者

Iterating over two dimension array and knowing current position

I am trying to iterate a multidimensio开发者_开发问答n array created with the following line

To iterate i'm using the following code

visiblematrix= Array.new (10) {Array.new(10){0}}

But this doesn't allow me to know the current x,y position while iterating. how can i find it out without resorting to temporary variables

visiblematrix.each do |x|
            x.each do |y|
                  puts y
            end 
end 


You can also use the Enumerable#each_with_index method (ruby arrays include the Enumerable mixin).

visiblematrix.each_with_index do |x, xi|
  x.each_with_index do |y, yi|
    puts "element [#{xi}, #{yi}] is #{y}"
  end
end


use each_index instead of just each.

Keep in mind x and y would now be your index not the value at that index. So visiblematrix[x] etc.

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜