[Leetcode] [JavaScript] Search a 2D Matrix

Source: Internet
Author: User


Search a 2D Matrix


Write an efficient algorithm, searches for a value in a m x n Matrix. This matrix has the following properties:





    • Integers in each row is sorted from the left to the right.
    • The first integer of each row was greater than the last integer of the previous row.





For example,



Consider the following matrix:


[
  [1,   3,  5,  7],
  [10, 11, 16, 20],
  [23, 30, 34, 50]
]


Given target =3, returntrue.



https://leetcode.com/problems/search-a-2d-matrix/





















Although it is a two-dimensional array, ordered, as a one-dimensional array of two points, calculate the row and Col subscript.



If you use the wrong two times, do a row at a time to do the column, it is very complicated to write.


 
 
1 /**
 2  * @param {number[][]} matrix
 3  * @param {number} target
 4  * @return {boolean}
 5  */
 6 var searchMatrix = function(matrix, target) {
 7     var m = matrix.length, n = matrix[0].length;
 8     var i  = 0, j = m * n - 1, middle, row, col, curr;
 9     while(i <= j){
10         middle = parseInt((i + j) / 2);
11         row = parseInt(middle / n);
12         col = middle % n;
13         curr = matrix[row][col];
14         if(target === curr){
15             return true;
16         }
17 
18         if(target > curr){
19             i = middle + 1; 
20         }else{
21             j = middle - 1;
22         }    
23     }
24     return false;
25 };








[Leetcode] [JavaScript] Search a 2D Matrix


Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.