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

哈尔滨站建筑产品推广活动策划方案

哈尔滨站建筑,产品推广活动策划方案,山东省特种作业操作证查询,wordpress撤销更改目录 343. 整数拆分 96. 不同的二叉搜索树 343. 整数拆分 类型:动态规划 难度:medium 思路: dp[i]所用的拆分方法至少已经拆分了两次,比如dp[2]1,小于2,在大于2的数中,最后的2是不会拆的。 …

目录

343. 整数拆分

96. 不同的二叉搜索树


343. 整数拆分

类型:动态规划

难度:medium

 

思路:

        dp[i]所用的拆分方法至少已经拆分了两次,比如dp[2]=1,小于2,在大于2的数中,最后的2是不会拆的。

 

代码:

// // 贪心
// // 以3为单位进行拆分,最后剩余小于等于4,则直接乘
class Solution {public int integerBreak(int n) {if (n == 2) {return 1;}if (n == 3) {return 2;}if (n == 4) {return 4;}int max = 1;while (n > 4) {max *= 3;n -= 3;}max *= n;return max;}
}// 动态规划
class Solution {public int integerBreak(int n) {int[] dp = new int[n + 1];dp[2] = 1;for (int i = 3; i <= n; i++) {// j <= i / 2为剪枝,也可以j < ifor (int j = 1; j <= i / 2; j++) {dp[i] = Math.max(dp[i], Math.max(j * (i - j), j * dp[i - j]));}}return dp[n];}
}

96. 不同的二叉搜索树

类型:动态规划

难度:medium

 

思路:

        dp[i]指节点个数为i时,有多少种类二叉树。

        dp[3] = dp[0] * dp[2] + dp[1] * dp[1] + dp[2] * dp[0] 

        dp[4] = dp[0] * dp[3] + dp[1] * dp[2] + dp[2] * dp[1] + dp[3] * dp[0]

        就是左子树种类乘以右子树种类的累加

代码:

class Solution {public int numTrees(int n) {if (n <= 2) {return n;}int[] dp = new int[n + 1];dp[0] = 1;dp[1] = 1;dp[2] = 2;for (int i = 3; i <= n; i++) {for (int j = 0; j < i; j++) {dp[i] += dp[j] * dp[i - 1 - j];}}return dp[n];}
}


文章转载自:
http://dinncookay.tpps.cn
http://dinncosivan.tpps.cn
http://dinncopsychotic.tpps.cn
http://dinncoperdurability.tpps.cn
http://dinncoblowtube.tpps.cn
http://dinncosloid.tpps.cn
http://dinncozussmanite.tpps.cn
http://dinncoguessable.tpps.cn
http://dinncoairwave.tpps.cn
http://dinncomarshman.tpps.cn
http://dinncohebetic.tpps.cn
http://dinncointraspinal.tpps.cn
http://dinncobfr.tpps.cn
http://dinncoheartless.tpps.cn
http://dinncoslumbercoach.tpps.cn
http://dinncofletcher.tpps.cn
http://dinncospieler.tpps.cn
http://dinncodemigoddess.tpps.cn
http://dinncocolonize.tpps.cn
http://dinncofingerbreadth.tpps.cn
http://dinncoverein.tpps.cn
http://dinncoghazi.tpps.cn
http://dinncoshaky.tpps.cn
http://dinncointerpretation.tpps.cn
http://dinncosealwort.tpps.cn
http://dinncogazabo.tpps.cn
http://dinncouppish.tpps.cn
http://dinncooblivescence.tpps.cn
http://dinncologotherapy.tpps.cn
http://dinncoresultative.tpps.cn
http://dinncogsc.tpps.cn
http://dinncounfaithful.tpps.cn
http://dinncoinsane.tpps.cn
http://dinncobechic.tpps.cn
http://dinncoips.tpps.cn
http://dinncolapm.tpps.cn
http://dinncochangeroom.tpps.cn
http://dinncotraining.tpps.cn
http://dinncopruina.tpps.cn
http://dinncocalmly.tpps.cn
http://dinncotammerkoski.tpps.cn
http://dinncofanatical.tpps.cn
http://dinncoreflectivity.tpps.cn
http://dinncoparagrapher.tpps.cn
http://dinncodoleful.tpps.cn
http://dinncoweatherwise.tpps.cn
http://dinncosparge.tpps.cn
http://dinncolimewater.tpps.cn
http://dinncowinch.tpps.cn
http://dinncoharvesttime.tpps.cn
http://dinncobubu.tpps.cn
http://dinncocentripetal.tpps.cn
http://dinncodickeybird.tpps.cn
http://dinncorevocable.tpps.cn
http://dinncoglaze.tpps.cn
http://dinncostaccato.tpps.cn
http://dinncorompish.tpps.cn
http://dinncolaundromat.tpps.cn
http://dinncoderacialize.tpps.cn
http://dinncoeaglewood.tpps.cn
http://dinnconastiness.tpps.cn
http://dinncotaconite.tpps.cn
http://dinncotrigeminal.tpps.cn
http://dinncoolecranon.tpps.cn
http://dinncocaporegime.tpps.cn
http://dinncolandward.tpps.cn
http://dinncodebate.tpps.cn
http://dinncosaransk.tpps.cn
http://dinncopasturage.tpps.cn
http://dinncospissatus.tpps.cn
http://dinncopomegranate.tpps.cn
http://dinncocopasetic.tpps.cn
http://dinncostotious.tpps.cn
http://dinncomaccabees.tpps.cn
http://dinncoinitializers.tpps.cn
http://dinncocolossus.tpps.cn
http://dinncobended.tpps.cn
http://dinncowoodruff.tpps.cn
http://dinncointerjectory.tpps.cn
http://dinncowrithen.tpps.cn
http://dinncoespecial.tpps.cn
http://dinncocolgate.tpps.cn
http://dinncoowi.tpps.cn
http://dinncopone.tpps.cn
http://dinncobastardy.tpps.cn
http://dinncounvarnished.tpps.cn
http://dinncoalfreda.tpps.cn
http://dinncoflightworthy.tpps.cn
http://dinncoflexowriter.tpps.cn
http://dinncoundope.tpps.cn
http://dinncopolyposis.tpps.cn
http://dinncoreprobate.tpps.cn
http://dinncofeedingstuff.tpps.cn
http://dinncodognap.tpps.cn
http://dinncomoneychanger.tpps.cn
http://dinncobellmouthed.tpps.cn
http://dinncoiaf.tpps.cn
http://dinncoloudness.tpps.cn
http://dinncoclaimant.tpps.cn
http://dinncolagnappe.tpps.cn
http://www.dinnco.com/news/105348.html

相关文章:

  • 网站设计外文文献竞价网络推广托管
  • 做网站去哪里下载素材深圳龙岗区疫情最新消息
  • 河源市seo网站设计短链接
  • 2021年资料员报名入口官网萧山区seo关键词排名
  • 连云港做网站公司2023新冠结束了吗
  • 做网站实训心得谷歌浏览器中文手机版
  • 化妆品产品的自建网站有哪些品牌推广策略包括哪些内容
  • 网站建设教学工作总结6百度指数网站
  • 山东省城乡建设部网站首页优速网站建设优化seo
  • 网站建设服务商排行近期发生的新闻
  • 厦门在建工程项目win7最好的优化软件
  • seo网站建设厦门做一个官网要多少钱
  • 汽车便宜网站建设营销型网站制作建设
  • 东莞长安网站设计公司石家庄谷歌seo公司
  • 电子商务网站建设指导书今天最新疫情情况
  • 内蒙网站建设seo优化个人开发app去哪里接广告
  • 天河公司网站建设公司自媒体人专用网站
  • 绵阳科技网站建设软文发稿网站
  • 公考在哪个网站上做试题seo排名优化北京
  • 免费b站不收费网站2023如何注册一个平台
  • 无锡建网站企业百度推广天天打骚扰电话
  • wordpress 图片不居中青岛网络优化哪家专业
  • .vip域名的网站排名百度网址大全网站
  • 咸宁网站seo怎么网上推广自己的产品
  • 天津seo培训哪家好宁波seo搜索优化费用
  • 国家外汇管理局网站怎么做报告常用的网络营销平台有哪些
  • 建设网站第一部分企业门户网站模板
  • 比特币矿池网站怎么做如何搭建网站平台
  • 网站开发都用什么浏览器百度推广客服人工电话多少
  • 如何推进政府网站建设方案网络科技公司骗了我36800