Search a 2D Matrix:二分查詢二維陣列
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 boolean searchMatrix(int[][] matrix, int target) { if(matrix.length == 0 || matrix[0].length == 0) return false; int targetRow = 0; //設定臨時陣列儲存每行第一列數字 int[] temp = new int[matrix.length]; for(int i = 0;i < matrix.length;i ++) temp[i] = matrix[i][0]; //找到目標元素所在行 targetRow = binarySearch(temp,target); if(targetRow >= 0) return true; else if(targetRow == -1) return false; else targetRow = -targetRow - 2; if(binarySearch(matrix[targetRow],target) > 0) return true; else return false; } public int binarySearch(int[] arr,int target){ int low = 0,high = arr.length - 1; while(low <= high){ int center = (low + high) / 2; if(arr[center] == target) return center; else if(arr[center] < target){ low = center + 1; } else{ high = center - 1; } } //如果不存在,返回target應在陣列中的位置,為了跟return center可能為0區分開,這裡多減去1 return - low - 1; } }
普通二分查詢返回false或true,這個方法返回的是元素在陣列中的位置(如果不存在,可通過返回值來確定此target應該插入的位置)最後一步 -low-1,減一的目的是為了將返回0的混淆情況區分開,這樣的話返回負數說明不存在,並且可以通過返回值算出所在行,返回正數說明存在。
相關推薦
Search a 2D Matrix:二分查詢二維陣列
Write an efficient algorithm that searches for a value in an m x n matrix. This matrix has the fol
[LeetCode] 74. Search a 2D Matrix 搜索一個二維矩陣
turn gpo cpp als 整數 rop 裏的 body ray Write an efficient algorithm that searches for a value in an m x n matrix. This matrix has the follow
240. Search a 2D Matrix II(搜尋二維矩陣)分治法。
題目連結 https://leetcode.com/problems/search-a-2d-matrix-ii/description/ 題目描述 Write an efficient algorithm that searches for a value in an m x n matrix
[LeetCode] Search a 2D Matrix II 搜尋一個二維矩陣之二
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
240. Search a 2D Matrix II(搜尋二維矩陣之二)
這道題沒什麼好說的,沒有太大的難度,很快就AC了。簡單說一下思路:觀察可知越往右下數越大,加上每一行最後一個數是該行最大值,因此可以根據列值減少搜尋的列數。定義 i 為矩陣的行,j 為矩陣的列,初始化 i 為0,j 為最後一列。若目標值大於當前matrix [ i ][ j
LeetCode:240. Search a 2D Matrix II(二維資料找數)
Write an efficient algorithm that searches for a value in an m x n matrix. This matrix has the following properties: Integers
leetcode解題之 Search a 2D Matrix java 版(在二維矩陣中查詢)
74. Search a 2D Matrix Write an efficient algorithm that searches for a value in anm x n matrix.
【LeetCode & 劍指offer刷題】矩陣題1:4 有序矩陣中的查詢( 74. Search a 2D Matrix )(系列)
【LeetCode & 劍指offer 刷題筆記】目錄(持續更新中...) 74. Search a 2D Matrix Write an efficient algorithm that searches for a va
Search a 2D Matrix(在二維陣列中查詢)
Write an efficient algorithm that searches for a value in an m x n matrix. This matrix has the following properties: Integers in each r
二分查詢——Search a 2D Matrix
題目: 給定了一個矩陣,該矩陣不僅每行,每列都遞增,而且每行的首位比前行的末位數字大時,可看成一位陣列,利用二分查詢。 例如矩陣為: int[][] data={{1, 3, 5, 7}, {10,11,16,20},
search-a-2d-matrix——二維矩陣找數
urn scribe algorithm desc log code ear win gre 題目描述 Write an efficient algorithm that searches for a value in an m x n matrix. This ma
新手算法學習之路----二分法Search-A-2D-Matrix
不想 pre tar 二分法 個數 get || strong search 題目: 寫出一個高效的算法來搜索 m × n矩陣中的值。 這個矩陣具有以下特性: 1 每行中的整數
[LeetCode] 240. Search a 2D Matrix II 搜索一個二維矩陣 II
str sort sel int als amp rom pro otto Write an efficient algorithm that searches for a value in an m x n matrix. This matrix has the foll
LeetCode 74. 搜索二維矩陣(Search a 2D Matrix)
tar 編寫 搜索 family pty 個數 找到 leet 二分 題目描述 編寫一個高效的算法來判斷 m x n 矩陣中,是否存在一個目標值。該矩陣具有如下特性: 每行中的整數從左到右按升序排列。 每行的第一個整數大於前一行的最後一個整數。 示例 1: 輸入:
LeetCode 240. 搜尋二維矩陣 II(Search a 2D Matrix II)
題目描述 編寫一個高效的演算法來搜尋 m x n 矩陣 matrix 中的一個目標值 target。該矩陣具有以下特性: 每行的元素從左到右升序排列。 每列的元素從上到下升序排列。 示例: 現有矩陣 matrix 如下: [
LeetCode74:Search a 2D Matrix
Write an efficient algorithm that searches for a value in an m x n matrix. This matrix has the following properties: Integers
【LeetCode】#74搜尋二維矩陣(Search a 2D Matrix)
【LeetCode】#74搜尋二維矩陣(Search a 2D Matrix) 題目描述 編寫一個高效的演算法來判斷 m x n 矩陣中,是否存在一個目標值。該矩陣具有如下特性: 每行中的整數從左到右按升序排列。 每行的第一個整數大於前一行的最後一個整數。 示例 示例 1:
【leetcode】#陣列【Python】74. Search a 2D Matrix 搜尋二維矩陣
連結: 題目: 編寫一個高效的演算法來判斷 m x n 矩陣中,是否存在一個目標值。該矩陣具有如下特性: 每行中的整數從左到右按升序排列。 每行的第一個整數大於前一行的最後一個整數。 示例 1:
[LeetCode] Search a 2D Matrix 搜尋一個二維矩陣
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
[CareerCup] 11.6 Search a 2D Matrix 搜尋一個二維矩陣
11.6 Given an M x N matrix in which each row and each column is sorted in ascending order, write a method to find an element. class Solution {