Problem Description
Write an efficient algorithm that searches for a value target
in an m x n
integer matrix matrix
. This matrix has the following properties:
- Integers in each row are sorted in ascending from left to right.
- Integers in each column are sorted in ascending from top to bottom.
Key Insights
- The search space can be reduced by utilizing the sorted properties of the matrix.
- Starting from the top-right corner of the matrix allows for an efficient search strategy: if the current number is greater than the target, move left; if it is less, move down.
- This eliminates an entire row or column with each comparison, leading to a time complexity of O(m + n).
Space and Time Complexity
Time Complexity: O(m + n)
Space Complexity: O(1)
Solution
The algorithm starts at the top-right corner of the matrix. Depending on the comparison between the current element and the target, it either moves left or down. This approach effectively reduces the search space with each step, leveraging the sorted nature of the matrix.