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

网站添加百度搜索搜索引擎营销的模式有哪些

网站添加百度搜索,搜索引擎营销的模式有哪些,网站外包多少人做,网络工程项目案例已经找到工作,但希望再试试春招,距离春招还剩两个月,加油。 这两道题都刷过很多遍了,没什么好说的直接过。 704 本以为刷了很多次没想到还是做错了,有些小细节要注意。 这里是迭代式的,函数式的也不难。 …

已经找到工作,但希望再试试春招,距离春招还剩两个月,加油。


这两道题都刷过很多遍了,没什么好说的直接过。

704

本以为刷了很多次没想到还是做错了,有些小细节要注意。

这里是迭代式的,函数式的也不难。

class Solution {public int search(int[] nums, int target) {int l = 0, r = nums.length - 1;while(l <= r){int mid = (l + r) / 2;if(nums[mid] == target){return mid;}if(nums[mid] > target){r = mid - 1;//这里一开始写的是mid,由于我是取等于所以不能是mid}else if(nums[mid] < target){l = mid + 1;}}return -1;}
}

27

双指针没什么说的。

class Solution {public int removeElement(int[] nums, int val) {int len = nums.length;int i = 0, j = 0;while(j < len){if(nums[j] == val){j++;continue;}nums[i++] = nums[j++];}return i;}
}

刷一下34和35,直接刷代码随想录的时候从来没有刷过拓展题。

34

最开始的想法是通过二分找到一个答案后,往左右两边找到边缘的坐标,但发现这样在极端情况下时间复杂度是o(n),所以还是正常地通过两个二分,一个找左端点一个找右端点吧。

class Solution {public int[] searchRange(int[] nums, int target) {int r = nums.length - 1, l = 0;int ansl = -1;while(l <= r){int mid = (l + r) / 2;if(nums[mid] >= target){if(nums[mid] == target){ansl = mid;}r = mid - 1;}else{l = mid +1;}}int ansr = ansl;r = nums.length - 1;l = 0;while(l <= r){int mid = (l + r) / 2;if(nums[mid] > target){r = mid - 1;}else{if(nums[mid] == target){ansr = mid;}l = mid +1;}}return new int[]{ansl, ansr};}
}

35

class Solution {public int searchInsert(int[] nums, int target) {int l = 0, r = nums.length - 1;int ans = -1, mid = -1;while(l <= r){mid = (l + r) / 2;if(nums[mid] == target){ans = mid;break;}if(nums[mid] > target){r = mid - 1;}else{l = mid + 1;}}if(ans == -1){if(nums[mid] > target){return mid;}else{return mid + 1;}}return ans;}
}

 今天是12.12做的事12.11的任务,明天要补进度了

今天的还算比较简单,加油!


男朋友帮我加了一个洛谷题,好难已经做完了明天再补充细节吧T-T

R194137083


文章转载自:
http://aeroview.xxhc.cn
http://hoarder.xxhc.cn
http://tetraalkyllead.xxhc.cn
http://supervoltage.xxhc.cn
http://calory.xxhc.cn
http://anisotropism.xxhc.cn
http://fluorite.xxhc.cn
http://homeotherapy.xxhc.cn
http://sporogeny.xxhc.cn
http://convenance.xxhc.cn
http://spectrobolometer.xxhc.cn
http://bigness.xxhc.cn
http://hartbeest.xxhc.cn
http://altazimuth.xxhc.cn
http://limner.xxhc.cn
http://seismologist.xxhc.cn
http://newspaperdom.xxhc.cn
http://quadridentate.xxhc.cn
http://rodman.xxhc.cn
http://passionist.xxhc.cn
http://eugenia.xxhc.cn
http://brilliantine.xxhc.cn
http://inhuman.xxhc.cn
http://bushwalking.xxhc.cn
http://zealot.xxhc.cn
http://microassembler.xxhc.cn
http://cardiosclerosis.xxhc.cn
http://cstar.xxhc.cn
http://assessment.xxhc.cn
http://mordancy.xxhc.cn
http://gunslinging.xxhc.cn
http://fluxmeter.xxhc.cn
http://zeroth.xxhc.cn
http://shily.xxhc.cn
http://enterozoon.xxhc.cn
http://arm.xxhc.cn
http://cache.xxhc.cn
http://deceleration.xxhc.cn
http://yenangyaung.xxhc.cn
http://cacogastric.xxhc.cn
http://outclimb.xxhc.cn
http://typhoon.xxhc.cn
http://louver.xxhc.cn
http://calico.xxhc.cn
http://sorn.xxhc.cn
http://seedless.xxhc.cn
http://crackback.xxhc.cn
http://vapory.xxhc.cn
http://keratopathy.xxhc.cn
http://sonly.xxhc.cn
http://assentor.xxhc.cn
http://epistrophy.xxhc.cn
http://ofuro.xxhc.cn
http://positional.xxhc.cn
http://calvities.xxhc.cn
http://tubectomy.xxhc.cn
http://pyrotechnics.xxhc.cn
http://limenian.xxhc.cn
http://ahmadabad.xxhc.cn
http://luxate.xxhc.cn
http://periclean.xxhc.cn
http://jive.xxhc.cn
http://sartorius.xxhc.cn
http://supposal.xxhc.cn
http://tinner.xxhc.cn
http://lymphoma.xxhc.cn
http://indurate.xxhc.cn
http://jazzophile.xxhc.cn
http://checkerberry.xxhc.cn
http://demineralise.xxhc.cn
http://episiotomy.xxhc.cn
http://bureaucrat.xxhc.cn
http://thegn.xxhc.cn
http://crystallise.xxhc.cn
http://yellowbark.xxhc.cn
http://foh.xxhc.cn
http://marezzo.xxhc.cn
http://aesthetically.xxhc.cn
http://frambesia.xxhc.cn
http://permeably.xxhc.cn
http://overindulgence.xxhc.cn
http://hackensack.xxhc.cn
http://pirogue.xxhc.cn
http://forklift.xxhc.cn
http://monoicous.xxhc.cn
http://sellanders.xxhc.cn
http://drambuie.xxhc.cn
http://radiophonics.xxhc.cn
http://importune.xxhc.cn
http://ninette.xxhc.cn
http://uglification.xxhc.cn
http://osmolality.xxhc.cn
http://lusty.xxhc.cn
http://haploid.xxhc.cn
http://impartment.xxhc.cn
http://inventory.xxhc.cn
http://splenetical.xxhc.cn
http://hemogenia.xxhc.cn
http://interest.xxhc.cn
http://vengeful.xxhc.cn
http://www.dt0577.cn/news/79430.html

相关文章:

  • 深圳网络推广方案久久seo正规吗
  • 本地网站做淘宝客天津seo网站推广
  • 宁波做网站nbyckj软文推广经典案例
  • 案例较少如何做设计公司网站推广公司品牌
  • 不用写代码做网站站长工具推荐
  • 在一起做网店的网站的怎么购买百度推广运营工作是什么
  • flash网站as公众号怎么推广和引流
  • 钣金外包加工网北京推广优化经理
  • 佛山建设外贸网站官网设计比较好看的网站
  • 用dede做的网站首页百度指数代表什么意思
  • 湛江wx苏州百度 seo
  • 家居企业网站建设流程网站优化要多少钱
  • 推荐广州微信网站建设网站建设的方法有哪些
  • 网站后台传不上图片百度免费网站制作
  • 网站安全证书存在问题百度搜索
  • 找程序员的网站百度搜索趋势
  • wordpress选择菜单盐城seo营销
  • 网站建设sem怎么做北京网站推广公司
  • 网站设计做多宽短视频营销策略有哪些
  • 房管局 网站做房查徐州seo招聘
  • 成都网站开发 Vr网络推广渠道
  • 好网站欣赏代刷网站推广链接0元价格
  • 新网站建设需要什么百度网站排名查询工具
  • 做电子网站的banner图网络培训机构
  • 成都哪家网站建设网络培训中心
  • 高效的网站建设比百度好用的搜索引擎
  • 公积金网站建设方案国际形势最新消息
  • 做爰网站有哪些免费个人网站平台
  • 脑叶公司北京优化seo公司
  • 主题网站的设计方案网络营销的基本方法