Problem Description
Given an m x n matrix mat, return an array of all the elements of the array in a diagonal order.
Key Insights
- The traversal of the matrix follows a diagonal pattern, alternating between moving up and down.
- The first element of each diagonal can be identified by its starting index, either from the first row or the last column.
- The direction of traversal changes when reaching the bounds of the matrix (either top or bottom for upward and left or right for downward).
Space and Time Complexity
Time Complexity: O(m * n)
Space Complexity: O(1) (excluding the output array)
Solution
The algorithm uses two nested loops to traverse the matrix diagonally. We start from each element in the first row and the last column. Depending on the current diagonal, we either move up (when the diagonal index is even) or down (when the diagonal index is odd). The elements are collected in a result array which is returned at the end.