递归javascript_JavaScript中的递归

递归javascript

by Kevin Ennis

凯文·恩尼斯(Kevin Ennis)

JavaScript中的递归 (Recursion in JavaScript)

I’m just gonna get this out of the way right up front, because people get really angry otherwise:

我只是直接解决这个问题,因为否则人们会非常生气:

Consider this post as a series of learning exercises. These examples are designed to make you think — and, if I’m doing it right, maybe expand your understanding of functional programming a little bit.

将此帖子视为一系列学习练习。 这些示例旨在让您思考-如果我做对的话,也许可以使您对函数式编程的理解有所扩展。

嘿,哇 我听说您喜欢递归,所以我说了“嘿,天哪。 我听说您喜欢递归,所以我说了“嘿,天哪…… (Hey, dawg. I heard you like recursion, so I put a “Hey, dawg. I heard you like recursion, so I put a “Hey, dawg…)

Loosely defined, recursion is the process of taking a big problem and sub-dividing it into multiple, smaller instances of the same problem.

松散地定义,递归是处理一个大问题并将其细分为相同问题的多个较小实例的过程。

Put into practice, that generally means writing a function that calls itself. Probably the most classic example of this concept is the factorial function.

付诸实践,通常意味着编写一个调用自身的函数。 此概念的最经典示例可能是阶乘函数。

You may remember from math class that the factorial of a number n is the product of all positive integers less than or equal to n. In other words, the factorial of 5 is 5 x 4 x 3 x 2 x 1. The mathematical notation for this is 5!.

您可能从数学课上还记得数字n的阶乘是所有小于或等于n的正整数的乘积 换句话说,阶乘55 x 4 x 3 x 2 x 1 。 为此的数学符号为5!

Something interesting you might have noticed about that pattern: 5! is actually just 5 x 4!. And 4! is just 4 x 3!. So on and so forth until you get down to 1.

关于该模式,您可能已经注意到了一些有趣的事情: 5! 实际上只有5 x 4! 。 还有4! 只有4 x 3! 。 依此类推,直到您降至1为止。

Here’s how we’d write that in JavaScript:

这是我们用JavaScript编写的方式:

If this seems confusing, I’d encourage you to mentally walk through the code using the example of factorial( 3 ).

如果这看起来令人困惑,我建议您使用factorial(3)的示例在代码上仔细地学习

Here’s a bit of help, in case you need it:

如果需要的话,这里有一些帮助:

  1. factorial( 3 ) is 3 x factorial( 2 ).

    factorial(3)3 x factorial(2)

  2. factorial( 2 ) is 2 x factorial( 1 ).

    factorial(2)2 x factorial(1)

  3. factorial( 1 ) meets our if condition, so it’s just 1.

    factorial(1)满足我们的if条件,因此仅为1。

So what’s really happening here is that you’re winding up the call stack, getting down to 1, and then unwinding the stack. As you unwind the call stack, you multiply each result. 1 x 2 x 3 is 6, and that’s your return value.

因此,这里真正发生的事情是结束调用堆栈,降低到1 ,然后展开堆栈。 展开调用堆栈时,将每个结果相乘。 1 x 2 x 36 ,这就是您的返回值。

反转字符串 (Reversing A String)

One of my co-workers recently told me about a whiteboard question that he’d been asked in an interview, and I thought it was kind of a fun problem.

我的一位同事最近告诉我一个关于白板问题的采访中有人问他,我认为这是一个有趣的问题。

Write a function that accepts a string a reverses it. Recursively.
编写一个接受字符串并将其反转的函数。 递归地。

If you’re the ambitious type, I’d encourage you to take a few minutes and try to solve this one on your own. Keep in mind the core principle of recursion, which is to take a big problem and break it down into smaller instances of itself.

如果您是一个有野心的人,我建议您花几分钟时间,尝试自己解决这个问题。 请记住递归的核心原则,即解决一个大问题并将其分解为更小的实例。

If you got stuck (or you’re the decidedly unambitious type), here’s my solution:

如果你卡住了(或者你是决然不思进取型),这里是我的解决方案:

Again, I’ll give a quick walk-through example in case you got stuck. We’ll use reverse(‘bar’) as a starting point.

再次,我将给出一个快速的示例,以防您陷入困境。 我们将使用reverse('bar')作为起点。

  1. reverse(‘bar’) is reverse(‘ar’) + ‘b’

    reverse('bar')reverse('ar')+'b'

  2. reverse(‘ar’) is reverse(‘r’) + ‘a’

    reverse('ar')reverse('r')+'a'

  3. reverse(‘r’) meets our if condition, so it’s just ‘r’

    reverse('r')满足我们的if条件,所以它只是'r'

When the call stack unwinds, we end up with ‘r’ + ‘a’ + ‘b’.

当调用堆栈结束时,我们最终得到'r'+'a'+'b'

编写递归映射函数 (Writing a Recursive Map Function)

For our final example, we’re going to write a map() function. We want to be able to use it like this:

对于最后一个示例,我们将编写一个map()函数。 我们希望能够像这样使用它:

Again, I’d strongly encourage you to take a few minutes and try this one on your own. Here are a few hints and reminders:

再一次,我强烈建议您花几分钟时间,自己尝试一下。 以下是一些提示和提醒:

  1. map() should always return a new array.

    map()应该始终返回一个数组。

  2. Break the problem down into smaller chunks.

    将问题分解成小块。
  3. Remember the reverse() example.

    记住reverse()示例。

Oh, good. You’re back. How did it go?

哦好 你回来了。 怎么样了

j/k, this is a blog and I can’t hear you. lol.

j / k,这是一个博客,我听不到您的声音。 大声笑。

Anyway, here’s how I did it:

无论如何,这是我的做法:

So let’s go through this using the example I gave earlier:

因此,让我们使用我之前给出的示例来完成此操作:

  1. Call map() using the array [ ‘a’, ‘b’, ‘c’ ]

    使用数组['a','b','c']调用map()

  2. Create a new array that holds the result of calling fn(‘a’)

    创建一个数组,其中包含调用fn('a')的结果

  3. Return [ ‘A’ ].concat( map([ ‘b’, ‘c’ ]) )

    返回['A'] .concat(map(['b','c']))

  4. Repeat steps 1 through 3 with [ ‘b’, ‘c’ ]

    ['b','c']重复步骤1至3

  5. Repeat steps 1 through 3 for [ ‘c’ ]

    ['c']重复步骤1至3

  6. Eventually, we call map() with an empty array, which ends the recursion.

    最终,我们使用一个空数组调用map() ,从而结束了递归。

NOTE:You should never, ever, ever do this in a real application. You’ll blow out the stack on large arrays, and more importantly, you create a huge amount of garbage by instantiating so many new objects. Use Array#map in production code.

注意:您永远不要在真实的应用程序中这样做。 您将炸毁大型阵列上的堆栈,更重要的是,通过实例化许多新对象来创建大量垃圾。 在生产代码中使用Array#map

结语 (Wrap Up)

Hopefully I did a decent job in explaining this stuff. If you’re still struggling a bit to wrap your head around recursion, the best advice I can give is to start with small examples and mentally trace the call stack. Try something like reverse(‘abc’) and walk through it, step-by-step. Eventually it’ll click.

希望我在解释这些东西方面做得不错。 如果您仍在努力地绕过递归,那么我可以提供的最佳建议是从小的示例开始,并从心理上跟踪调用堆栈。 尝试类似reverse('abc')之类的步骤,并逐步进行操作。 最终它将单击。

— -

--

Follow me on Twitter or Medium for more posts. I’m trying to write once a day for the next 30 days.

在Twitter或Medium上关注我以获取更多帖子。 在接下来的30天里,我每天尝试写一次。

And if you’re in the Boston area and want to come work on crazy, interesting, hard problems with me at Starry, shoot me an email. I’m hiring.

如果您在波士顿地区,并且想在Starry与我一起解决疯狂,有趣,棘手的问题,请给我发送电子邮件 。 我在招聘。

翻译自: https://www.freecodecamp.org/news/recursion-in-javascript-1608032c7a1f/

递归javascript

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/396533.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

python google drive api_Python管理Google Drive文件

背景Google Drive给我们提供了很多管理和共享文件的简便方法,而且还是免费的(当然免费账户有一定存储限制)。但是,对于某些edu用户,Google Drive存储不仅是免费的,而且是无配额限制的。您是否想知道如何从数据科学的角度充分利用这…

Struts2学习---基本配置,action,动态方法调用,action接收参数

首先我们先来直接配置,然后再来讲原理: 第一步:jar包的引入: 我们可以到struts2的官网上下载: http://struts.apache.org/download.cgi#struts2513 然后解压将里面的app文件夹下的示例war文件解压,将里面的…

实现对数组找最大最小数

实现对数组找最大最小数 在用js的过程中我们往往会需要找到一个数组里最大或最小的数, 但是我们不能直接用Math.max(Arr)或Math.min(Arr),因为max()里面不能填数组,只能填连续的数。 那我们该怎么办呢? 一定…

开源免费 低代码平台开源_行动透明:免费代码营现已开源

开源免费 低代码平台开源by freeCodeCamp通过freeCodeCamp 行动透明:免费代码营现已开源 (Transparency in Action: Free Code Camp is Now Open Source) We’re thrilled to announce that Free Code Camp is now fully open-source. Now you can fork our code b…

vc mysql init 崩溃_故障分析 | 崩溃恢复巨慢原因分析

作者:xuty本文来源:原创投稿*爱可生开源社区出品,原创内容未经授权不得随意使用,转载请联系小编并注明来源。一、现象有个 MySQL 5.7 开发库异常挂掉后,奔溃恢复一直处于如下位置,且持续了 2 小时左右才起来…

surfaceview结束后怎么处理_污泥压滤机处理后的污泥怎么处置

在污泥处理处置中,污泥压滤机处理污泥只是对污泥进行脱水,并没有实现污泥资源化处置。再进行污泥“减量化、无害化、资源化”处理时,许多企业用污泥压滤机对污泥脱水处理后就不知道怎么继续处置了,从而使污泥饼无处可去&#xff0…

js数组详解

1,什么是数组数组是值得有序集合,每个值叫做一个元素,而每个元素在数组中有一个位置,以数字表示,称为索引。js的数组是无类型的,数组元素可以是任意类型,同一个数组中的不同元素可能是对象或数组…

[转载]linux内存映射mmap原理分析

转自:http://blog.csdn.net/yusiguyuan/article/details/23388771 内存映射,简而言之就是将用户空间的一段内存区域映射到内核空间,映射成功后,用户对这段内存区域的修改可以直接反映到内核空间,同样,内核空…

判断一个指针有没有free_Free Code Camp的每个人现在都有一个档案袋

判断一个指针有没有freeby freeCodeCamp通过freeCodeCamp Free Code Camp的每个人现在都有一个档案袋 (Everyone at Free Code Camp now has a Portfolio) Note: we originally published this on our now-defunct blog in January of 2015.注意:我们最初是在2015年…

冒泡、快速排序小结

1.冒泡排序 (1) 比较领近的两个数 (2) 如果左边的比右边的数字大,则交换位置 (3) 向右移动一位,继续比较相邻的两个数 排序示例: 一轮排序结束后,最大值的位置已经移动最右端,再次如此循环,最终经过n-1次则…

python中until函数_等待应用程序窗口:python中的pywinauto.timings.WaitUntilPasses

我试图在pywinauto中使用waituntilpasses来给应用程序时间打开一个新窗口.我已使用SWAPY识别窗口详细信息.为了进行测试,我手动打开了子窗口,因此WaitUntilPasses应该立即看到该窗口,但是没有看到.语法显示为OK,因为我可以找到并打印find_windows的输出,如下所示:xx…

synchronized 异常_由浅入深,Java 并发编程中的 Synchronized

synchronized 作用synchronized 关键字是 Java 并发编程中线程同步的常用手段之一。1.1 作用:确保线程互斥的访问同步代,锁自动释放,多个线程操作同个代码块或函数必须排队获得锁,保证共享变量的修改能够及时可见,获得…

mysql正则通配符全解_mysql正则表达式与通配符

扩展正则表达式的一些字符是: “.”匹配任何单个的字符。 一个字符类“[...]”匹配在方括号内的任何字符。例如,“[abc]”匹配“a”、“b”或“c”。为了命名字符的一个范围,使用一个“-”。“[a-z]”匹配任何小写字母,而“[0-9…

dos常用文件操作命令

1、DIR 含义: 显示指定目录下的文件和子目录列表 类型: 内部命令 格式: DIR[drive:][path][filename][/p][/w][/A[[:]attributes]][/O[[:]sortorder]][/S][/B][/L] 举例: DIR DIR D:\px2 DIR D:\px2\*.txt DIR /A:D /O:D 2、COPY…

使您的Java代码闻起来很新鲜

by Marco Massenzio由Marco Massenzio 使您的Java代码闻起来很新鲜 (Make your Java code smell nice and fresh) A few years ago I joined a startup working on a cloud enterprise service that was originally built by an offshore team.几年前,我加入了一家…

MySQL时间戳与日期格式的相互转换

MySQL时间戳与日期格式的相互转换,PHP时间戳与日期格式的相互转换 MySQL: 获取当前时间SELECT NOW(); // 2018/10/11 14:22:51 时间日期格式转换成时间戳格式,UNIX_TIMESTAMP()SELECT UNIX_TIMESTAMP(NOW()); // 1539238930 时间戳格式转换成时间日期格式…

Linux内存分配机制之伙伴系统和SLAB

转载请注明原文地址:http://www.cnblogs.com/ygj0930/p/6539590.html 内核内存管理的一项重要工作就是如何在频繁申请释放内存的情况下,避免碎片的产生。这就要求内核采取灵活而恰当的内存分配策略。通常,内存分配一般有两种情况&#xff1a…

this.$modal.confirm 自定义按钮关闭_自定义函数,让你玩转Excel得心应手

让“自动更正”输入统一的文本,你是不是经常为输入某些固定的文本,如《电脑报》而烦恼呢?那就往下看吧。1.执行“工具→自动更正”命令,打开“自动更正”对话框。2.在“替换”下面的方框中输入“pcw”(也可以是其他字符,“pcw”用小写),在“替换为”下面的方框中输…

php mysql 排名算法_MySQL PHP:优化排名查询和计数子查询

这是原始数据,并希望根据得分(count(tbl_1.id))对它们进行排名.[tbl_1]id | name1 | peter2 | jane1 | peter2 | jane3 | harry3 | harry3 | harry3 | harry4 | ron因此,制作临时表(tbl_2)来计算每个id的分数.SELECT id, name, COUNT( id ) AS scoreFROM tbl_1GROUP BY idORDER…

CCF-CSP 最大的矩形

问题描述在横轴上放了n个相邻的矩形,每个矩形的宽度是1,而第i(1 ≤ i ≤ n)个矩形的高度是hi。这n个矩形构成了一个直方图。例如,下图中六个矩形的高度就分别是3, 1, 6, 5, 2, 3。请找出能放在给定直方图里面积最大的矩…