程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> C語言 >> C++ >> C++入門知識 >> Leetcode 二分查找 Search a 2D Matrix

Leetcode 二分查找 Search a 2D Matrix

編輯:C++入門知識

Leetcode 二分查找 Search a 2D Matrix


Search a 2D Matrix

Total Accepted: 18506 Total Submissions: 59402My Submissions

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

  • Integers in each row are sorted from left to right.
  • The first integer of each row is 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, return true.



    題意:在一個二維矩陣中找到給定的值。矩陣從上到下從左到右有序
    思路:二維空間的二分查找
    先在一維裡找中間位置,再將該位置轉為二維空間裡的下標
    復雜度:

    class Solution {
    public:
        bool searchMatrix(const vector > &matrix, int target){
        	if (matrix.empty()) return false;
        	int m = matrix.size(), n = matrix.front().size();
        	int begin = 0, end = m * n, middle, row, col;
    
    
        	while(begin < end){
        		middle = begin + (end - begin) / 2;
        		int row = middle / n;
        		int col = middle % n;
        		if(matrix[row][col] == target) return true;
        		else if(matrix[row][col] < target) begin = middle + 1;
        		else end = middle;
        	}
        	return false;
        }
    };



  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved