diff options
author | Peter Bengtsson <mail@peterbe.com> | 2020-12-08 14:40:17 -0500 |
---|---|---|
committer | Peter Bengtsson <mail@peterbe.com> | 2020-12-08 14:40:17 -0500 |
commit | 33058f2b292b3a581333bdfb21b8f671898c5060 (patch) | |
tree | 51c3e392513ec574331b2d3f85c394445ea803c6 /files/zh-cn/glossary/recursion | |
parent | 8b66d724f7caf0157093fb09cfec8fbd0c6ad50a (diff) | |
download | translated-content-33058f2b292b3a581333bdfb21b8f671898c5060.tar.gz translated-content-33058f2b292b3a581333bdfb21b8f671898c5060.tar.bz2 translated-content-33058f2b292b3a581333bdfb21b8f671898c5060.zip |
initial commit
Diffstat (limited to 'files/zh-cn/glossary/recursion')
-rw-r--r-- | files/zh-cn/glossary/recursion/index.html | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/files/zh-cn/glossary/recursion/index.html b/files/zh-cn/glossary/recursion/index.html new file mode 100644 index 0000000000..9c6c6e3a7b --- /dev/null +++ b/files/zh-cn/glossary/recursion/index.html @@ -0,0 +1,18 @@ +--- +title: Recursion(递归) +slug: Glossary/Recursion +tags: + - 术语 + - 编程 +translation_of: Glossary/Recursion +--- +<p>一种函数调用自身的操作。递归被用于处理包含有更小的子问题的一类问题。一个递归函数可以接受两个输入参数:一个最终状态(终止递归)或一个递归状态(继续递归)。</p> + +<h2 id="了解更多">了解更多</h2> + +<h3 id="通用信息">通用信息</h3> + +<ul> + <li>Wikipedia 页面:{{Interwiki("wikipedia", "Recursion (computer science)")}}</li> + <li><a href="/en-US/docs/Web/JavaScript/Guide/Functions#Recursion">更多关于 JavaScript 中递归的细节</a></li> +</ul> |