博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
LeetCode240:Search a 2D Matrix II
阅读量:6697 次
发布时间:2019-06-25

本文共 855 字,大约阅读时间需要 2 分钟。

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 in ascending from left to right.
  • Integers in each column are sorted in ascending from top to bottom.

For example,

Consider the following 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]]

Given target = 5, return true.

Given target = 20, return false.

 to see which companies asked this question

//时间复杂度为O(m+n)class Solution{public:	bool searchMatrix(vector
>& matrix, int target) { int m = matrix.size(); int n = matrix[0].size(); int i = 0, j = n - 1; while (i < m && j >= 0) { if (matrix[i][j] == target) return true; else if (matrix[i][j] > target) j--; else i++; } return false; }};
你可能感兴趣的文章
面试进阶题集锦-持续更新
查看>>
vaOJ10369 - Arctic Network
查看>>
Class文件结构
查看>>
YY一下,扎克伯格做了一个什么样的AI家居助手?
查看>>
SpringJDBC解析3-回调函数(update为例)
查看>>
Redis进阶实践之十六 Redis大批量增加数据
查看>>
SublimeText2 快捷键
查看>>
云栖科技评论第48期:前沿科技对世界的改造 我们这代人只完成了1%
查看>>
Redis3.2.5部署(单节点)
查看>>
AI研究的盲点:无解的神经网络内在逻辑
查看>>
Java操作MongoDB
查看>>
JDBC与JNDI应用比较
查看>>
分布式系统开发工具包 —— 基于Kryo的Java对象序列化
查看>>
Python功能之反射
查看>>
从Android源码的角度分析Binder机制
查看>>
更改阿里云域名解析台里某个域名绑定的IP之后不能解析到新IP
查看>>
Powershell检测AD账户密码过期时间并邮件通知
查看>>
CentOS7安装OpenFire
查看>>
ActiveMQ(07):ActiveMQ结合Spring开发--建议
查看>>
keepalived与lvs结合使用配置实例
查看>>