91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

LeetCode中怎么查找排序矩陣

發布時間:2021-08-12 14:49:45 來源:億速云 閱讀:157 作者:Leah 欄目:大數據

今天就跟大家聊聊有關LeetCode中怎么查找排序矩陣,可能很多人都不太了解,為了讓大家更加了解,小編給大家總結了以下內容,希望大家根據這篇文章可以有所收獲。

1,問題簡述

給定M×N矩陣,每一行、每一列都按升序排列,請編寫代碼找出某元素。

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。

3,題解思路

正常的題解思路

4,題解程序


public class SearchMatrixTest2 {    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 searchMatrix = searchMatrix(matrix, target);        System.out.println("searchMatrix = " + searchMatrix);    }
   public static boolean searchMatrix(int[][] matrix, int target) {        if (matrix == null || matrix.length == 0 || matrix[0].length == 0) {            return false;        }        int rowLength = 0;        int colLength = matrix[0].length - 1;        while (rowLength < matrix.length && colLength >= 0) {            if (matrix[rowLength][colLength] == target) {                return true;            } else if (matrix[rowLength][colLength] > target) {                colLength--;            } else {                rowLength++;            }        }        return false;    }}

5,題解程序圖片版

LeetCode中怎么查找排序矩陣

看完上述內容,你們對LeetCode中怎么查找排序矩陣有進一步的了解嗎?如果還想了解更多知識或者相關內容,請關注億速云行業資訊頻道,感謝大家的支持。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

达日县| 崇礼县| 翼城县| 阜新市| 乐陵市| 兰考县| 龙游县| 彩票| 大英县| 夏邑县| 密山市| 德昌县| 芦溪县| 玉溪市| 崇礼县| 齐齐哈尔市| 保康县| 河北区| 磐石市| 黄冈市| 云梦县| 蒙城县| 定远县| 铜鼓县| 休宁县| 朝阳县| 嘉义县| 水富县| 济宁市| 永州市| 郓城县| 望都县| 越西县| 瑞金市| 邢台市| 芦山县| 五河县| 宜君县| 鸡西市| 瑞丽市| 沁源县|