您好,登錄后才能下訂單哦!
今天就跟大家聊聊有關LeetCode中怎么查找二維數組,可能很多人都不太了解,為了讓大家更加了解,小編給大家總結了以下內容,希望大家根據這篇文章可以有所收獲。
1,問題簡述
在一個 n * m 的二維數組中,每一行都按照從左到右遞增的順序排序,每一列都按照從上到下遞增的順序排序。請完成一個函數,輸入這樣的一個二維數組和一個整數,判斷數組中是否含有該整數。
2,示例
現有矩陣 matrix 如下:
[
[1, 4, 7, 11, 15],
[2, 5, 8, 12, 19],
[3, 6, 9, 16, 22],
[10, 13, 14, 17, 24],
[18, 21, 23, 26, 30]
]
給定 target = 5,返回 true。
給定 target = 20,返回 false。
限制:
0 <= n <= 1000
0 <= m <= 1000
3,題解思路
本題基于二維數組給出的特點和hashSet兩種思路進行解決,那么接下來看下題解程序是怎么個實現方式吧
4,題解程序
import java.util.HashSet;
public class FindNumberIn2DArrayTest {
public static void main(String[] args) {
int[][] matrix = {
{1, 4, 7, 11, 15},
{2, 5, 8, 12, 19},
{3, 6, 9, 16, 22},
{10, 13, 14, 17, 24},
{18, 21, 23, 26, 30}
};
int target = 5;
boolean numberIn2DArray = findNumberIn2DArray(matrix, target);
System.out.println("numberIn2DArray = " + numberIn2DArray);
}
public static boolean findNumberIn2DArray(int[][] matrix, int target) {
if (matrix == null || matrix.length == 0 || matrix[0].length == 0) {
return false;
}
int rowLength = matrix.length;
int colLength = matrix[0].length - 1;
int row = 0;
while (row < rowLength && colLength >= 0) {
if (matrix[row][colLength] == target) {
return true;
} else if (matrix[row][colLength] > target) {
colLength--;
} else {
row++;
}
}
return false;
}
public static boolean findNumberIn2DArray2(int[][] matrix, int target) {
if (matrix == null || matrix.length == 0 || matrix[0].length == 0) {
return false;
}
HashSet<Integer> hashSet = new HashSet<>(matrix.length * matrix[0].length);
int rowLength = matrix.length;
int colLength = matrix[0].length;
for (int i = 0; i < rowLength; i++) {
for (int j = 0; j < colLength; j++) {
if (hashSet.contains(target)) {
return true;
}
hashSet.add(matrix[i][j]);
}
}
return hashSet.contains(target);
}
}
5,題解程序圖片版
看完上述內容,你們對LeetCode中怎么查找二維數組有進一步的了解嗎?如果還想了解更多知識或者相關內容,請關注億速云行業資訊頻道,感謝大家的支持。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。