Problem Description
You start at the cell (rStart, cStart) of an rows x cols grid facing east. The northwest corner is at the first row and column in the grid, and the southeast corner is at the last row and column. You will walk in a clockwise spiral shape to visit every position in this grid. Whenever you move outside the grid's boundary, we continue our walk outside the grid (but may return to the grid boundary later.). Eventually, we reach all rows * cols spaces of the grid. Return an array of coordinates representing the positions of the grid in the order you visited them.
Key Insights
- The traversal follows a spiral pattern: right, down, left, and up repeatedly.
- We can simulate the movement by maintaining a direction array and changing directions when boundaries are hit.
- The grid can be considered infinite in terms of movement, allowing us to go out of bounds and come back.
Space and Time Complexity
Time Complexity: O(rows * cols)
Space Complexity: O(1) (ignoring the output space)
Solution
To solve the problem, we can use a simple simulation approach. We will maintain a list of coordinates that we visit in the order of traversal. We define possible movement directions as arrays (right, down, left, up) and iterate through the grid, adjusting our position and direction as needed. We will keep track of visited positions until we have covered all rows * cols spaces.