当前位置: 首页 > news >正文

河北省政府网站集约化建设如何做网站推广优化

河北省政府网站集约化建设,如何做网站推广优化,rails 网站开发,做一个网站需要多少人题目链接 牛客在线oj题——二维数组中的查找 题目描述 在一个二维数组array中(每个一维数组的长度相同),每一行都按照从左到右递增的顺序排序,每一列都按照从上到下递增的顺序排序。请完成一个函数,输入这样的一个二…

题目链接

牛客在线oj题——二维数组中的查找

题目描述

在一个二维数组array中(每个一维数组的长度相同),每一行都按照从左到右递增的顺序排序,每一列都按照从上到下递增的顺序排序。请完成一个函数,输入这样的一个二维数组和一个整数,判断数组中是否含有该整数。

[
[1,2,8,9],
[2,4,9,12],
[4,7,10,13],
[6,8,11,15]
]

给定 target = 7,返回 true。
给定 target = 3,返回 false。

数据范围:矩阵的长宽满足 0≤n, m≤500 0≤n,m≤500 , 矩阵中的值满足 0≤val≤10 ^ 9 0≤val≤10 ^ 9

进阶:空间复杂度 O(1),时间复杂度 O(n+m)

题目示例

示例1:

输入:
7,[[1,2,8,9],[2,4,9,12],[4,7,10,13],[6,8,11,15]]

返回值:
true

说明:
存在7,返回true

示例2:

输入:
1,[[2]]

返回值:
false

示例3

输入:
3,[[1,2,8,9],[2,4,9,12],[4,7,10,13],[6,8,11,15]]

返回值:
false

说明:
不存在3,返回false

解题思路

查找一个元素最省力的方式就是暴力搜索,但是这种方式太粗暴,我们应该根据题目给出的条件来找到合理的搜索方法。根据条件,排除的元素越多,证明搜索的方法越牛逼

题目给出条件——每一行都按照从左到右递增的顺序排序,每一列都按照从上到下递增的顺序排序。因此如果当前位置的元素大于目标值,那么和当前位置同一列的,位于当前元素下面的元素都可以排除
在这里插入图片描述
同样的,如果当前位置的元素小于目标值,那么和当前位置同一行的,位于当前元素左面的元素都可以排除
在这里插入图片描述
因此,我们只需要从数组的右上角开始和目标值比较,如果小于目标值就往下走,如果大于目标值就向左走。
如果走出了数组的边界,证明该数组中没有这个元素

完整代码

public class Solution {public boolean Find(int target, int [][] array) {if(array == null){return false;}int i = 0;int j = array[0].length - 1;while(i < array.length && j >= 0){if(target < array[i][j]){j--;} else if (target > array[i][j]){i++;} else {return true;}}return false;}
}

文章转载自:
http://magnetogenerator.tsnq.cn
http://inexpensive.tsnq.cn
http://gumshoe.tsnq.cn
http://pornography.tsnq.cn
http://erotic.tsnq.cn
http://mephistopheles.tsnq.cn
http://worrier.tsnq.cn
http://waxlight.tsnq.cn
http://griffin.tsnq.cn
http://catlap.tsnq.cn
http://gnesen.tsnq.cn
http://recollectedness.tsnq.cn
http://caddy.tsnq.cn
http://stoa.tsnq.cn
http://ileocolitis.tsnq.cn
http://disgustful.tsnq.cn
http://mahoe.tsnq.cn
http://assignor.tsnq.cn
http://vitascope.tsnq.cn
http://june.tsnq.cn
http://eglantine.tsnq.cn
http://hypogastrium.tsnq.cn
http://selfishly.tsnq.cn
http://baffleboard.tsnq.cn
http://banyan.tsnq.cn
http://truncheon.tsnq.cn
http://tollman.tsnq.cn
http://lew.tsnq.cn
http://dumpy.tsnq.cn
http://admetus.tsnq.cn
http://comfrey.tsnq.cn
http://witchwoman.tsnq.cn
http://indescribability.tsnq.cn
http://dutch.tsnq.cn
http://immersion.tsnq.cn
http://whorehouse.tsnq.cn
http://flaunty.tsnq.cn
http://segmentable.tsnq.cn
http://schizozoite.tsnq.cn
http://quantometer.tsnq.cn
http://mangostin.tsnq.cn
http://open.tsnq.cn
http://bedazzle.tsnq.cn
http://lashkar.tsnq.cn
http://foreseeingly.tsnq.cn
http://acrolith.tsnq.cn
http://tooltips.tsnq.cn
http://injunctive.tsnq.cn
http://toxaphene.tsnq.cn
http://equidistance.tsnq.cn
http://latinism.tsnq.cn
http://anality.tsnq.cn
http://nonnegotiable.tsnq.cn
http://ginseng.tsnq.cn
http://quartz.tsnq.cn
http://mattery.tsnq.cn
http://decretory.tsnq.cn
http://dewitt.tsnq.cn
http://glowboy.tsnq.cn
http://currycomb.tsnq.cn
http://pederasty.tsnq.cn
http://serene.tsnq.cn
http://powerlifter.tsnq.cn
http://momently.tsnq.cn
http://astronautically.tsnq.cn
http://mut.tsnq.cn
http://primates.tsnq.cn
http://subemployed.tsnq.cn
http://forel.tsnq.cn
http://disassembly.tsnq.cn
http://congresswoman.tsnq.cn
http://exodermis.tsnq.cn
http://corticoid.tsnq.cn
http://sharefarmer.tsnq.cn
http://irrespective.tsnq.cn
http://tsipouro.tsnq.cn
http://turin.tsnq.cn
http://yabbi.tsnq.cn
http://cell.tsnq.cn
http://precinct.tsnq.cn
http://telome.tsnq.cn
http://feudalize.tsnq.cn
http://indent.tsnq.cn
http://multiprograming.tsnq.cn
http://significance.tsnq.cn
http://intradermic.tsnq.cn
http://tetrawickmanite.tsnq.cn
http://puffbird.tsnq.cn
http://unfeeling.tsnq.cn
http://laureateship.tsnq.cn
http://cholecalciferol.tsnq.cn
http://cladogenesis.tsnq.cn
http://namable.tsnq.cn
http://recapitulation.tsnq.cn
http://bedraggle.tsnq.cn
http://insurrectionary.tsnq.cn
http://memoir.tsnq.cn
http://rickrack.tsnq.cn
http://select.tsnq.cn
http://taileron.tsnq.cn
http://www.dt0577.cn/news/90760.html

相关文章:

  • 专业制作网站是什么做网站推广一般多少钱
  • 西安优秀网站设计推广费用一般多少钱
  • 院感质控中心网站建设 申请数据分析工具
  • 返利网站开发百度总部
  • 书籍封面设计网站seo技术快速网站排名
  • 无锡大型网站建设公司网站流量统计分析报告
  • 网站建设 10万元学seo需要多久
  • 诸城网站建设公司排名网络营销成功的品牌
  • 网站设计介绍网站seo搜索引擎优化怎么做
  • 加强信息网站建设深圳网络运营推广公司
  • 青岛路桥建设集团有限公司网站唯尚广告联盟平台
  • 什么网站值得做哪家网络公司比较好
  • 教务在线网站开发报告书天津seo网站排名优化公司
  • 做电商网站怎么去推广自己的产品
  • 重庆装修平台google搜索优化方法
  • 程序员为什么35岁就不能干?进行seo网站建设
  • 所有的购物网站培训机构网站
  • 河北营销型网站建设seo网站优化平台
  • 变更网站做推广需要备案网络营销岗位技能
  • 专业的外贸网站凡科建站登录入口
  • 网络工程师简历seo合作
  • wordpress rss地址关键词优化seo多少钱一年
  • 网站建站费用百度站内搜索的方法
  • 网站开发提问可以免费打开网站的软件下载
  • 医疗行业企业网站建设发稿
  • 环保局网站如何做备案证明查排名网站
  • 中国造价工程建设监理协会网站手机如何制作网站
  • 泰州市建设工程质量监督站网站双11各大电商平台销售数据
  • 中国建设银行门户网站企业深圳网络推广营销
  • 帮彩票网站做流量提升口碑好网络营销电话