Problem Description
Given a positive integer n, generate an n x n matrix filled with elements from 1 to n^2 in spiral order.
Key Insights
- The matrix is filled in a spiral pattern starting from the top-left corner.
- The filling direction changes between right, down, left, and up as the boundaries of the matrix are reached.
- Maintaining boundaries (top, bottom, left, right) helps to control the filling of the matrix.
Space and Time Complexity
Time Complexity: O(n^2)
Space Complexity: O(1) (excluding the output matrix)
Solution
To solve the problem, we can use a 2D array (matrix) to store the values. We define boundaries for our spiral traversal: top, bottom, left, and right. We will fill the matrix by iterating through these boundaries in a specific order:
- Start at the top row, moving from the left boundary to the right boundary.
- Move down the right column.
- If there are remaining rows, fill the bottom row from right to left.
- Move up the left column if there are remaining columns.
- Adjust the boundaries after each pass and repeat until the entire matrix is filled.