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 with a better solution.

I'm posting my solution as an answer to this question.

Example Output:

For a 3x3 matrix, the output should be:

(0, 0) (1, 0) (1, 1) (0, 1) (-1, 1) (-1, 0) (-1, -1) (0, -1) (1, -1)

3x3 matrix

Furthermore, the algorithm should support non-square matrices, so for example for a 5x3 matrix, the output should be:

(0, 0) (1, 0) (1, 1) (0, 1) (-1, 1) (-1, 0) (-1, -1) (0, -1) (1, -1) (2, -1) (2, 0) (2, 1) (-2, 1) (-2, 0) (-2, -1)

5x3 matrix

link|improve this question

73% accept rate
Can you explain what you want for non-square matrices? Your solution has a "jump" from (2,1) to (-2,1) -- is this intended? [E.g. for a 7x3 matrix, it would have two more "jumps", and for a (2k+1)x3 matrix it would have 2k-3 jumps?] – ShreevatsaR Dec 29 '08 at 18:56
1  
Yes, the jumps are intentional. I've updated the question with a 5x3 matrix image. As you can see from the image, we're skipping the top and bottom rows. – Can Berk Güder Dec 29 '08 at 19:30
Ok, then your own code seems cleanest. And although this is offtopic: how did you generate those images? :) – ShreevatsaR Dec 29 '08 at 19:34
=)) I did not generate them. In fact, the way I created them is quite stupid. I created the tables in OO.org Calc, took a screenshot, and edited the screenshot in GIMP. =)) – Can Berk Güder Dec 30 '08 at 11:26
1  
@Ying: I don't really know why my friend needs this, but he said he wants to favor members of the matrix closer to the center in a search algorithm. – Can Berk Güder Dec 30 '08 at 22:08
show 4 more comments
feedback

8 Answers

up vote 13 down vote accepted

Here's my solution (in Python):

def spiral(X, Y):
	x = y = 0
	dx = 0
	dy = -1
	for i in range(max(X, Y)**2):
		if (-X/2 < x <= X/2) and (-Y/2 < y <= Y/2):
			print (x, y)
			# DO STUFF...
		if x == y or (x < 0 and x == -y) or (x > 0 and x == 1-y):
			dx, dy = -dy, dx
		x, y = x+dx, y+dy
link|improve this answer
This is the best way of writing it, as far as I can see. The only possible improvement would be to make it O(MN) instead of O(max(M,N)^2) by directly skipping past those (x,y) that are not going to be printed, but that will make the code a bit more ugly. – ShreevatsaR Dec 29 '08 at 19:20
I'm optimizing my solution and it's pretty close to what you've already got. This is a pretty good solution I think. Besides ShreevatsaR's suggestion, and stuff like not calculating x/2 and y/2 each iteration, there's not too much to improve on except style. – Triptych Dec 29 '08 at 20:03
feedback

I love python's generators.

def spiral(N, M):
    x,y = 0,0   
    dx, dy = 0, -1

    for dumb in xrange(N*M):
        if abs(x) == abs(y) and [dx,dy] != [1,0] or x>0 and y == 1-x:  
            dx, dy = -dy, dx            # corner, change direction

        if abs(x)>N/2 or abs(y)>M/2:    # non-square
            dx, dy = -dy, dx            # change direction
            x, y = -y+dx, x+dy          # jump

        yield x, y
        x, y = x+dx, y+dy

Testing with:

print 'Spiral 3x3:'
for a,b in spiral(3,3):
    print (a,b),

print '\n\nSpiral 5x3:'
for a,b in spiral(5,3):
    print (a,b),

You get:

Spiral 3x3:
(0, 0) (1, 0) (1, 1) (0, 1) (-1, 1) (-1, 0) (-1, -1) (0, -1) (1, -1) 

Spiral 5x3:
(0, 0) (1, 0) (1, 1) (0, 1) (-1, 1) (-1, 0) (-1, -1) (0, -1) (1, -1) (2, -1) (2, 0) (2, 1) (-2, 1) (-2, 0) (-2, -1)
link|improve this answer
feedback

Here is my solution (In Ruby)

def spiral(xDim, yDim)
   sx = xDim / 2
   sy = yDim / 2

   cx = cy = 0
   direction = distance = 1

   yield(cx,cy)
   while(cx.abs <= sx || cy.abs <= sy)
      distance.times { cx += direction; yield(cx,cy) if(cx.abs <= sx && cy.abs <= sy); } 
      distance.times { cy += direction; yield(cx,cy) if(cx.abs <= sx && cy.abs <= sy); } 
      distance += 1
      direction *= -1
   end
end

spiral(5,3) { |x,y|
   print "(#{x},#{y}),"
}
link|improve this answer
Still O(max(n,m)^2), but nice style. – Triptych Dec 29 '08 at 20:16
direction=-direction instead of direction*=-1? if you were golfing d=-d is shorter than d*=-1 too – gnibbler Oct 12 '09 at 22:30
feedback

C++ anyone? Quick translation from python, posted for completeness

void Spiral( int X, int Y){
    int x,y,dx,dy;
    x = y = dx =0;
    dy = -1;
    int t = std::max(X,Y);
    int maxI = t*t;
    for(int i =0; i < maxI; i++){
    	if ((-X/2 < x <= X/2) && (-Y/2 < y <= Y/2)){
    		// DO STUFF...
    	}
    	if( (x == y) || ((x < 0) && (x == -y)) || ((x > 0) && (x == 1-y))){
    		t = dx;
    		dx = -dy;
    		dy = t;
    	}
    	x += dx;
    	y += dy;
    }
}
link|improve this answer
you can also use s and ds like I do to detect the corners which gets rid of the huge if condition – gnibbler Oct 13 '09 at 0:11
feedback

TDD, in Java.

SpiralTest.java:

import java.awt.Point;
import java.util.List;

import junit.framework.TestCase;

public class SpiralTest extends TestCase {

    public void test3x3() throws Exception {
    	assertEquals("(0, 0) (1, 0) (1, 1) (0, 1) (-1, 1) (-1, 0) (-1, -1) (0, -1) (1, -1)", strung(new Spiral(3, 3).spiral()));
    }

    public void test5x3() throws Exception {
    	assertEquals("(0, 0) (1, 0) (1, 1) (0, 1) (-1, 1) (-1, 0) (-1, -1) (0, -1) (1, -1) (2, -1) (2, 0) (2, 1) (-2, 1) (-2, 0) (-2, -1)",
    			strung(new Spiral(5, 3).spiral()));
    }

    private String strung(List<Point> points) {
    	StringBuffer sb = new StringBuffer();
    	for (Point point : points)
    		sb.append(strung(point));
    	return sb.toString().trim();
    }

    private String strung(Point point) {
    	return String.format("(%s, %s) ", point.x, point.y);
    }

}

Spiral.java:

import java.awt.Point;
import java.util.ArrayList;
import java.util.List;

public class Spiral {
    private enum Direction {
	E(1, 0) {Direction next() {return N;}},
	N(0, 1) {Direction next() {return W;}},
	W(-1, 0) {Direction next() {return S;}},
	S(0, -1) {Direction next() {return E;}},;

    	private int	dx;
    	private int	dy;

    	Point advance(Point point) {
    		return new Point(point.x + dx, point.y + dy);
    	}

    	abstract Direction next();

    	Direction(int dx, int dy) {
    		this.dx = dx;
    		this.dy = dy;
    	}
    };
    private final static Point ORIGIN = new Point(0, 0);
    private final int	width;
    private final int	height;
    private Point		point;
    private Direction	direction	= Direction.E;
    private List<Point>	list = new ArrayList<Point>();

    public Spiral(int width, int height) {
    	this.width = width;
    	this.height = height;
    }

    public List<Point> spiral() {
    	point = ORIGIN;
    	int steps = 1;
    	while (list.size() < width * height) {
    		advance(steps);
    		advance(steps);
    		steps++;
    	}
    	return list;
    }

    private void advance(int n) {
    	for (int i = 0; i < n; ++i) {
    		if (inBounds(point))
    			list.add(point);
    		point = direction.advance(point);
    	}
    	direction = direction.next();
    }

    private boolean inBounds(Point p) {
    	return between(-width / 2, width / 2, p.x) && between(-height / 2, height / 2, p.y);
    }

    private static boolean between(int low, int high, int n) {
    	return low <= n && n <= high;
    }
}
link|improve this answer
I think this is not quite 'code golf' :) – leppie Jul 30 '09 at 15:49
@leppie: Maybe not - certainly not short enough - but I think it's a good demonstration of TDD, and reasonably clean, easy-to-understand, correct code. I'll leave it in. – Carl Manaster Jul 30 '09 at 16:26
feedback

Haskell, take your pick:

spiral x y = (0, 0) : concatMap ring [1 .. max x' y'] where
    ring n | n > x' = left x' n  ++ right x' (-n)
    ring n | n > y' = up   n  y' ++ down (-n) y'
    ring n          = up n n ++ left n n ++ down n n ++ right n n
    up    x y = [(x, n) | n <- [1-y .. y]]; down = (.) reverse . up
    right x y = [(n, y) | n <- [1-x .. x]]; left = (.) reverse . right
    (x', y') = (x `div` 2, y `div` 2)

spiral x y = filter (\(x',y') -> 2*abs x' <= x && 2*abs y' <= y) .
             scanl (\(a,b) (c,d) -> (a+c,b+d)) (0,0) $
             concat [ (:) (1,0) . tail 
                    $ concatMap (replicate n) [(0,1),(-1,0),(0,-1),(1,0)]
                    | n <- [2,4..max x y] ]
link|improve this answer
8  
Please don't take this as a rant or a troll's comment, but GOD is haskell ugly! – Petruza Jul 28 '09 at 21:48
I could not agree with the above comment more. – Sneakyness Jul 28 '09 at 21:59
This Haskell looks very trendy to me. – user181548 Oct 13 '09 at 0:20
feedback

This is based on your own solution, but we can be smarter about finding the corners. This makes it easier to see how you might skip over the areas outside if M and N are very different.

def spiral(X, Y):
    x = y = 0
    dx = 0
    dy = -1
    s=0
    ds=2
    for i in range(max(X, Y)**2):
            if abs(x) <= X and abs(y) <= Y/2:
                    print (x, y)
                    # DO STUFF...
            if i==s:
                    dx, dy = -dy, dx
                    s, ds = s+ds/2, ds+1
            x, y = x+dx, y+dy

and a generator based solution that is better than O(max(n,m)^2), It is O(nm+abs(n-m)^2) because it skips whole strips if they are not part of the solution.

def spiral(X,Y):
X = X+1>>1
Y = Y+1>>1
x = y = 0
d = side = 1
while x<X or y<Y:
    if abs(y)<Y:
        for x in range(x, x+side, d):
            if abs(x)<X: yield x,y
        x += d
    else:
        x += side
    if abs(x)<X:
        for y in range(y, y+side, d):
            if abs(y)<Y: yield x,y
        y += d
    else:
        y += side
    d =-d
    side = d-side
link|improve this answer
feedback

Java spiral "Code golf" attempt, based on the python-variant.

public static void Spiral(int X, int Y) {
    int x=0, y=0, dx = 0, dy = -1;
    int t = Math.max(X,Y);
    int maxI = t*t;

    for (int i=0; i < maxI; i++){
        if ((-X/2 < x && x <= X/2) && (-Y/2 < y  && y <= Y/2)) {
            System.out.println(x+","+y);
            //DO STUFF
        }

        if( (x == y) || ((x < 0) && (x == -y)) || ((x > 0) && (x == 1-y))){
            t=dx; dx=-dy; dy=t;
        }   
        x+=dx; y+=dy;
    }
}
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.