From 33058f2b292b3a581333bdfb21b8f671898c5060 Mon Sep 17 00:00:00 2001 From: Peter Bengtsson Date: Tue, 8 Dec 2020 14:40:17 -0500 Subject: initial commit --- files/zh-cn/glossary/recursion/index.html | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 files/zh-cn/glossary/recursion/index.html (limited to 'files/zh-cn/glossary/recursion/index.html') 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 +--- +

一种函数调用自身的操作。递归被用于处理包含有更小的子问题的一类问题。一个递归函数可以接受两个输入参数:一个最终状态(终止递归)或一个递归状态(继续递归)。

+ +

了解更多

+ +

通用信息

+ + -- cgit v1.2.3-54-g00ecf