Leetcode--search a 2D Matrix

Source: Internet
Author: User

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],  [Ten, One,],  [23, 30, 34, 50]]

Given Target = 3 , return true .

Original title Link: https://oj.leetcode.com/problems/search-a-2d-matrix/

Title: Find out if the target value exists in the M * n Matrix.

The better way is to find the two points. The matrix as a whole is treated as an array.

public boolean Searchmatrix (int[][] matrix, int target) {if (Matrix = = NULL | | matrix.length = = 0 | | matrix[0].length = = 0)  return false;int m = matrix.length;int n = matrix[0].length;int start = 0;int end = M * N-1;while (start <= end) {int Mid = (start + end)/2;int x = mid/n;int y = mid% n;if (matrix[x][y] = = target) return true;if (Matrix[x][y] < Targ ET) start = mid + 1;elseend = mid-1;} return false;}


Leetcode--search a 2D Matrix

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.