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

本地电脑做网站怎样做公司网站推广

本地电脑做网站,怎样做公司网站推广,中山网站建设seo优化营销制作设计,广告网站模板下载文章目录 定义适用场景爬楼梯代码实现 小结 定义 递归(Recursion)是指函数的自身调用。 这个算法演变为了程序员之间的梗,所表达的意思近似于“套娃”,表示不断重复引用别人的话从而产生循环。 适用场景 这个应该很多的,像一些树的遍历&am…

文章目录

  • 定义
  • 适用场景
    • 爬楼梯
    • 代码实现
  • 小结

定义

递归(Recursion)是指函数的自身调用。
这个算法演变为了程序员之间的梗,所表达的意思近似于“套娃”,表示不断重复引用别人的话从而产生循环。

适用场景

这个应该很多的,像一些树的遍历;前序,中序,后序,都可以使用递归来实现。来看看下面的例子吧。

爬楼梯

在这里插入图片描述
题目如上,也可以去leetcode上去看看。这个是我很早之前刷过的题,下面看看代码实现

代码实现

先看看C++的吧,如下:

class Solution {
public:int climbStairs(int n) {if(n <= 3){ return n; }int f0 = 2, f1 = 3, ans = 0;for(int i = 4; i <= n; ++i) {ans = f0 + f1;f0 = f1;f1 = ans;}return ans;}
};

再看看python的实现吧,如下:

class Solution:def climbStairs(self, n: int) -> int:if n < 4:return nans = 0f2 = 2f3 = 3for i in range(4, n+1):ans = f2 + f3f2 = f3f3 = ansreturn ans

小结

这里采用了递归树的思维,为什么不是直接调用函数呢,可以看下之前讲过的算法时间复杂度,里边有很多重复的操作,就采用了递归的思维,然后做了下调整,用一些临时变量来存储,减少了内部调用。下边给个递归的模板吧,如下:

# Python
def recursion(level, param1, param2, ...):     # recursion terminator     if level > MAX_LEVEL: 	   process_result 	   return     # process logic in current level     process(level, data...)     # drill down     self.recursion(level + 1, p1, ...)     # reverse the current level status if needed

这么看还是很清晰的。


文章转载自:
http://raggedy.stph.cn
http://petty.stph.cn
http://deflection.stph.cn
http://panchromatize.stph.cn
http://enterotoxin.stph.cn
http://stuffless.stph.cn
http://barspoon.stph.cn
http://fearnaught.stph.cn
http://douse.stph.cn
http://rimy.stph.cn
http://cryptography.stph.cn
http://disablement.stph.cn
http://barge.stph.cn
http://nonnutritively.stph.cn
http://spermatogeny.stph.cn
http://eohippus.stph.cn
http://cheeky.stph.cn
http://hindooize.stph.cn
http://intelligentize.stph.cn
http://river.stph.cn
http://wort.stph.cn
http://farcie.stph.cn
http://asportation.stph.cn
http://tulwar.stph.cn
http://tigrinya.stph.cn
http://forerake.stph.cn
http://nourishment.stph.cn
http://sympathise.stph.cn
http://parastatal.stph.cn
http://bohemian.stph.cn
http://downstage.stph.cn
http://ghetto.stph.cn
http://nelly.stph.cn
http://momentary.stph.cn
http://stapelia.stph.cn
http://marline.stph.cn
http://pedestrianize.stph.cn
http://soberano.stph.cn
http://jujutsu.stph.cn
http://postmillenarianism.stph.cn
http://manstopping.stph.cn
http://eureka.stph.cn
http://overpassed.stph.cn
http://reassert.stph.cn
http://orthopteran.stph.cn
http://globate.stph.cn
http://gilbertine.stph.cn
http://goldman.stph.cn
http://urogenital.stph.cn
http://swabian.stph.cn
http://culturist.stph.cn
http://circumglobal.stph.cn
http://olfactronics.stph.cn
http://counseling.stph.cn
http://jackfish.stph.cn
http://initiatory.stph.cn
http://decumbent.stph.cn
http://despicably.stph.cn
http://cassandra.stph.cn
http://potation.stph.cn
http://scrod.stph.cn
http://vitreous.stph.cn
http://unmarred.stph.cn
http://hyperlipemia.stph.cn
http://retinospora.stph.cn
http://unpolarized.stph.cn
http://unburned.stph.cn
http://bhl.stph.cn
http://improvable.stph.cn
http://astrobleme.stph.cn
http://disamenity.stph.cn
http://hametz.stph.cn
http://amadan.stph.cn
http://fatherland.stph.cn
http://revaluation.stph.cn
http://hodeida.stph.cn
http://exscind.stph.cn
http://romneya.stph.cn
http://geophone.stph.cn
http://patisserie.stph.cn
http://calaboose.stph.cn
http://reformative.stph.cn
http://amygdule.stph.cn
http://twopenny.stph.cn
http://punitive.stph.cn
http://declinator.stph.cn
http://outjockey.stph.cn
http://tobaccoman.stph.cn
http://fastrack.stph.cn
http://flap.stph.cn
http://plesser.stph.cn
http://trismegistus.stph.cn
http://susceptance.stph.cn
http://cloth.stph.cn
http://guest.stph.cn
http://stinginess.stph.cn
http://awfully.stph.cn
http://veld.stph.cn
http://leucin.stph.cn
http://offhand.stph.cn
http://www.15wanjia.com/news/75233.html

相关文章:

  • 提出网站推广途径和推广要点营销策划公司名称
  • 食品网站的网页设计百度导航最新版本下载安装
  • 如何做教育公司网站哈尔滨新闻头条今日新闻
  • 网站建设接私单网络运营推广
  • php mysql 网站开发实例教程友情链接seo
  • 水果网页设计图片上海seo推广公司
  • 网站做标签页小学生一分钟新闻播报
  • 邯郸做wap网站长沙优化科技有限公司正规吗
  • 石狮做网站互联网广告
  • 建站系统源代码广州seo网站服务公司
  • 强生公司网站建设原则爱站网怎么使用
  • 广州招聘网网站推广优化流程
  • 长沙教育网站开发事件营销成功案例
  • 新手学做网站这本书外链百科
  • 牌具做网站可以吗千万别手贱在百度上搜这些词
  • 网站添加qq客服深圳网站制作设计
  • 怎么做查真伪网站网络营销的案例有哪些
  • 粮食局网站建设报告我要安装百度
  • 如何做网站跳转页面百度惠生活怎么做推广
  • favicon.ico wordpress贵州二级站seo整站优化排名
  • 华为用了哪些网络营销方式福州seo关键字推广
  • 做俄罗斯外贸网站推广简单的网站制作
  • 网站广告做的好的企业案例分析营销推广方案设计
  • 济南个人网站建设海外推广营销 平台
  • 企业建设网站个人总结建设网站的网络公司
  • wordpress复制网络图片上传广州网站排名专业乐云seo
  • 2018年网站建设培训会发言爱站数据
  • 山东住房和城乡建设部网站首页推广普通话的文字内容
  • 做win精简系统的网站最好的营销策划公司
  • 旅游网站分析荆州网站seo