Solution: Spiral Matrix

Let's solve the Spiral Matrix problem using the Matrices pattern.

Statement

Given an m×nm\times n matrix, return an array containing the matrix elements in spiral order, starting from the top-left cell.

Constraints:

  • 1≤1\leq matrix.length ≤10\leq 10
  • 1≤1\leq matrix[i].length ≤10\leq 10
  • −100≤-100\leq matrix[i][j] ≤100\leq 100

Solution

We’ll maintain a variable, direction, which indicates the direction we need to travel in. It will store the value of either 11 or −1-1. Its value will change based on the following rules:

  • It will be 11 if we’re traveling in the following directions:

    • Left to right (horizontal)
    • Top to bottom (vertical)
  • It will be −1-1 if we’re traveling in the following directions:

    • Right to left (horizontal)
    • Bottom to top (vertical)

Here’s how the algorithm works:

  1. We initialize the following variables:

    • rows, cols = len(matrix), len(matrix[0]): These are the total number of rows and columns in the matrix, respectively.
    • row, col = 0, -1: These are the pointers used to traverse the matrix.
    • direction = 1: This indicates the direction we need to travel in. It is initialized to 11 since our first traversal will be in the left to right (horizontal) direction.
    • result = []: This array stores the matrix elements in spiral order.
  2. We start the traversal from the top left cell in the matrix:

    1. We first travel from left to right in a row by adding the direction variable to col while keeping the value of row unchanged. At each iteration, we will add matrix[row][col] to result. At the end of this row traversal, we decrement rows by 11 because if we traverse a column after this, we’ll traverse one less element.
    2. Next, we travel from top to bottom in a column by adding the direction variable to row while keeping the value of col unchanged. At each iteration, we will add matrix[row][col] to result. At the end of this column traversal, we decrement cols by 11 because if we traverse a row after this, we’ll traverse one less element.
  3. We reverse the direction by multiplying the direction variable by −1-1:

    1. Now, we travel from right to left in a row by adding the direction variable (which is now −1-1) to col while keeping the value of row unchanged. At each iteration, we will add matrix[row][col] to result. At the end of this row traversal, we decrement rows by 11 because if we traverse a column after this, we’ll traverse one less element.

    2. Next, we travel from bottom to top in a col by adding the direction variable (which is now −1-1) to row while keeping the value of col unchanged. At each iteration, we will add matrix[row][col] to result. At the end of this column traversal, we decrement cols by 11 because if we traverse a row after this, we’ll traverse one less element.

  4. We again reverse the direction by multiplying the direction variable by −1-1.

  5. The four steps above are repeated until all the cells of the matrix have been traversed, after which result stores the spiral order, so we return result.

Let’s look at the following illustration to get a better understanding of the solution:

Level up your interview prep. Join Educative to access 70+ hands-on prep courses.