Tagged Questions

20
votes
7answers
4k views

Looping in a spiral

A friend was in need of an algorithm that would let him loop through the elements of an NxM matrix (N and M are odd). I came up with a solution, but I wanted to see if my fellow SO'ers could come up ...
8
votes
5answers
190 views

Iterate over 2d array in an expanding circular spiral

Given an n by n matrix M, at row i and column j, I'd like to iterate over all the neighboring values in a circular spiral. The point of doing this is to test some function, f, which depends on M, to ...
6
votes
3answers
270 views

Matrix and algorithm “spiral”

i wanted ask if there some algorithm ready, that allowed me to do this: i have a matrix m (col) x n (row) with m x n elements. I want give position to this element starting from center and rotating ...