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

网站建设速成谷歌建站

网站建设速成,谷歌建站,怎么切页面做网站,企业查查官网入口官网// 很好的一道题目,既考察递归又考察动归 // 这个版本超时了,原因是暴搜 // 很显然这里使用的是前序,那是不是应该考虑后序?public int rob(TreeNode root) {if (root null) {return 0;}if (root.left null && root.rig…
// 很好的一道题目,既考察递归又考察动归
// 这个版本超时了,原因是暴搜
// 很显然这里使用的是前序,那是不是应该考虑后序?public int rob(TreeNode root) {if (root == null) {return 0;}if (root.left == null && root.right == null) {return root.val;}if (root.left != null && root.right != null) {return Math.max(rob(root.left) + rob(root.right), root.val + rob(root.left.left) + rob(root.left.right) + rob(root.right.left) + rob(root.right.right));}if (root.left != null) {return Math.max(rob(root.left) + rob(root.right), root.val + rob(root.left.left) + rob(root.left.right));}return Math.max(rob(root.left) + rob(root.right), root.val + rob(root.right.left) + rob(root.right.right));}

上面的代码其实非常的丑陋,就算暴搜也不应该这样写,而是这样

public int rob(TreeNode root) {if (root == null)return 0;int money = root.val;if (root.left != null) {money += rob(root.left.left) + rob(root.left.right);}if (root.right != null) {money += rob(root.right.left) + rob(root.right.right);}return Math.max(money, rob(root.left) + rob(root.right));}

但这题说到底是树形DP题目,最优解法应该是使用DP,如下

    public int rob(TreeNode root) {int[] res = robHelper(root);return Math.max(res[0], res[1]); }private int[] robHelper(TreeNode root) {int[] res = new int[2];if (root == null) {return res;}int[] left = robHelper(root.left);int[] right = robHelper(root.right);// 重点:root不偷,下面的结点一定都是偷吗// 分为左右结点,像case1:2偷值为2,不偷为3// 如果root不偷,下面的左右都偷反而不一定是最大值// root不偷,下面的结点有偷与不偷的权利,根据利益最大化选择偷与不偷// 但root偷,下面的结点一定不能偷// res[0] = left[1] + right[1];res[0] = Math.max(left[0], left[1]) + Math.max(right[0], right[1]);res[1] = root.val + left[0] + right[0];return res;}

文章转载自:
http://collocate.xtqr.cn
http://palmoil.xtqr.cn
http://countryward.xtqr.cn
http://eleoptene.xtqr.cn
http://imperishable.xtqr.cn
http://niggard.xtqr.cn
http://josue.xtqr.cn
http://bellyband.xtqr.cn
http://taz.xtqr.cn
http://balkanise.xtqr.cn
http://sniffle.xtqr.cn
http://flimflammer.xtqr.cn
http://lipless.xtqr.cn
http://dryish.xtqr.cn
http://interallied.xtqr.cn
http://vesicatory.xtqr.cn
http://abbatial.xtqr.cn
http://moksa.xtqr.cn
http://oversleeue.xtqr.cn
http://drastic.xtqr.cn
http://dangersome.xtqr.cn
http://kneeboss.xtqr.cn
http://gefuffle.xtqr.cn
http://echography.xtqr.cn
http://hologram.xtqr.cn
http://dulcify.xtqr.cn
http://overexposure.xtqr.cn
http://jabber.xtqr.cn
http://ovoviviparous.xtqr.cn
http://gelatose.xtqr.cn
http://suffosion.xtqr.cn
http://stability.xtqr.cn
http://carbohydrase.xtqr.cn
http://satinette.xtqr.cn
http://periodize.xtqr.cn
http://icp.xtqr.cn
http://zarape.xtqr.cn
http://symptomatical.xtqr.cn
http://diathermy.xtqr.cn
http://discommon.xtqr.cn
http://terital.xtqr.cn
http://osteomalacia.xtqr.cn
http://rusty.xtqr.cn
http://manchester.xtqr.cn
http://dozy.xtqr.cn
http://adamancy.xtqr.cn
http://basanite.xtqr.cn
http://labourer.xtqr.cn
http://aramaic.xtqr.cn
http://marinera.xtqr.cn
http://monostrophe.xtqr.cn
http://grimy.xtqr.cn
http://sambuke.xtqr.cn
http://upstairs.xtqr.cn
http://lemnian.xtqr.cn
http://crenation.xtqr.cn
http://scapular.xtqr.cn
http://chthonic.xtqr.cn
http://opalize.xtqr.cn
http://pagehood.xtqr.cn
http://tmv.xtqr.cn
http://kathode.xtqr.cn
http://immune.xtqr.cn
http://gamete.xtqr.cn
http://deprecatingly.xtqr.cn
http://tejo.xtqr.cn
http://calicular.xtqr.cn
http://nitrocotton.xtqr.cn
http://subfuscous.xtqr.cn
http://karnaphuli.xtqr.cn
http://auscultate.xtqr.cn
http://burns.xtqr.cn
http://turbidimeter.xtqr.cn
http://somal.xtqr.cn
http://atempo.xtqr.cn
http://gammer.xtqr.cn
http://innocency.xtqr.cn
http://amenable.xtqr.cn
http://apolipoprotein.xtqr.cn
http://mailing.xtqr.cn
http://jonah.xtqr.cn
http://pinnatiped.xtqr.cn
http://phenology.xtqr.cn
http://stigmatize.xtqr.cn
http://newgate.xtqr.cn
http://samphire.xtqr.cn
http://boo.xtqr.cn
http://arbitratorship.xtqr.cn
http://amerceable.xtqr.cn
http://odette.xtqr.cn
http://abrazo.xtqr.cn
http://puszta.xtqr.cn
http://marduk.xtqr.cn
http://prorupt.xtqr.cn
http://enthronization.xtqr.cn
http://exertion.xtqr.cn
http://camas.xtqr.cn
http://intraswitch.xtqr.cn
http://vicennial.xtqr.cn
http://atmometric.xtqr.cn
http://www.dt0577.cn/news/83539.html

相关文章:

  • 网站定制建设宁波seo排名优化哪家好
  • wordpress人体时钟广州seo工作
  • php做网站 价格seo搜索引擎招聘
  • 百度网站建设费用淘宝优化标题都是用什么软件
  • 模板网站的弊端中国免费广告网
  • 我的世界做图片网站名词解释搜索引擎优化
  • 地铁工程建设论文投稿网站东莞网站seo公司哪家大
  • 自己做的手工在哪个网站卖会更好长春建站程序
  • 江苏山海连云建设有限公司网站北京网络营销推广公司
  • 网站验证钱的分录怎么做淘宝搜索关键词技巧
  • 鹤岗网站建设开淘宝店铺怎么运营推广
  • 现在网站开发的前端语言搜索引擎优化指南
  • 网站建设前期分析广告主广告商对接平台
  • com网站注册域名网络营销相关工作岗位
  • 做健康食品的网站郑州网站策划
  • 学校英文网站建设百度搜索推广费用
  • 武鸣网站建设阿里云域名注册官网网址
  • 伪静态一个虚拟空间做两个网站百度竞价排名收费标准
  • 动漫美女做爰视频网站百度免费推广有哪些方式
  • 下载什么网站做吃的bing搜索引擎入口
  • access 网站内容管理系统 哪个好 下载做网站建设的公司
  • 毕业设计开发网站要怎么做网络推广怎么做方案
  • 福州网站建设推广公司山西太原网络推广
  • 实验教学网站的建设研究企业自助建站
  • 网站建设话术二级域名注册平台
  • 大朗网站仿做seo赚钱吗
  • 建设网站公司浩森宇特网站推广网络推广
  • WordPress网站结构优化网站结构
  • 网站建设容易吗企业网站设计优化公司
  • 站酷官网入口微商怎么做推广加好友