Possible Duplicate:
Looping in a spiral

Given a grid of any height and width, write an algorithm to traverse it in a spiral. (Starting at the top left and ending in the middle) without passing over previously visited nodes. Without using nested loops.

link|improve this question

9  
Wow, did you copy and paste that right out of your homework? – boiler96 May 31 '10 at 22:01
no. my friend needs help. I know how to do it in two nested for loops. Please help! – myusuf3 May 31 '10 at 22:02
1  
3  
-1 for "no. my friend needs help" – Cam May 31 '10 at 22:26
1  
Riiiight. Your "friend." :) – Robert J. Walker Jun 2 '10 at 19:55
show 2 more comments
feedback

closed as exact duplicate by Paul R, Jim Lewis, ChrisF, Moron, Shaggy Frog Jun 1 '10 at 2:52

This question covers exactly the same ground as earlier questions on this topic; its answers may be merged with another identical question. See the FAQ for guidance on how to improve it.

2 Answers

  1. Set xmin = 0, xmax = grid.width - 1, ymin = 0, and ymax = grid.height - 1. These are the traversal limits.
  2. Set dy = 0 and dx = 1. This is the traversal direction.
  3. Set x = 0 and y = 0. This is your cursor.

While xmin <= xmax and ymin <= ymax:

  1. Visit the node at (x, y).
  2. If dx == 1 and x == xmax, set dx = 0, dy = 1, and ymin = y + 1.
  3. If dy == 1 and y == ymax, set dx = -1, dy = 0, and xmax = x - 1.
  4. If dx == -1 and x == xmin, set dx = 0, dy = -1, and ymax = y - 1.
  5. If dy == -1 and y == ymin, set dx = 1, dy = 0, and xmin = x + 1.
  6. Set x = x + dx and y = y + dy.

I have no idea what that algorithm is called; it just seemed apparent from the description. Nested loops would be a much more optimal solution; all those if statements will push the limits of an optimizer.

link|improve this answer
1  
this isn't giving me the correct stuff – myusuf3 Jun 1 '10 at 0:02
feedback

it should be done using one for loop and starting from bottom left, I'am in that coarse

link|improve this answer
feedback

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