freeCodeCamp/curriculum/challenges/chinese/08-coding-interview-prep/rosetta-code/y-combinator.chinese.md

79 lines
2.6 KiB
Markdown
Raw Normal View History

---
title: Y combinator
id: 594810f028c0303b75339ad5
challengeType: 5
videoUrl: ''
localeTitle: 和组合
---
## Description
<section id="description"><p>在严格的<a href="https://en.wikipedia.org/wiki/Functional programming" title="wp函数式编程">函数编程</a><a href="https://en.wikipedia.org/wiki/lambda calculus" title="wplambda演算">lambda演算中</a> 函数lambda表达式没有状态只允许引用封闭函数的参数。这排除了递归函数的通常定义其中函数与变量的状态相关联并且该变量的状态在函数体中使用。 </p><p> <a href="http://mvanier.livejournal.com/2897.html">Y组合</a>器本身是一个无状态函数,当应用于另一个无状态函数时,它返回函数的递归版本。 Y组合器是这类函数中最简单的一种称为<a href="https://en.wikipedia.org/wiki/Fixed-point combinator" title="wp定点组合器">定点组合器</a></p>任务: <pre> <code>Define the stateless Y combinator function and use it to compute &lt;a href=&quot;https://en.wikipedia.org/wiki/Factorial&quot; title=&quot;wp: factorial&quot;&gt;factorial&lt;/a&gt;.</code> </pre><p> <code>factorial(N)</code>功能已经给你了。另见<a href="http://vimeo.com/45140590">Jim Weirich功能编程中的冒险</a></p></section>
## Instructions
<section id="instructions">
</section>
## Tests
<section id='tests'>
```yml
tests:
- text: Y必须返回一个函数
testString: 'assert.equal(typeof Y(f => n => n), "function", "Y must return a function");'
- text: factorial1必须返回1。
testString: 'assert.equal(factorial(1), 1, "factorial(1) must return 1.");'
- text: factorial2必须返回2。
testString: 'assert.equal(factorial(2), 2, "factorial(2) must return 2.");'
- text: factorial3必须返回6。
testString: 'assert.equal(factorial(3), 6, "factorial(3) must return 6.");'
- text: factorial4必须返回24。
testString: 'assert.equal(factorial(4), 24, "factorial(4) must return 24.");'
- text: factorial10必须返回3628800。
testString: 'assert.equal(factorial(10), 3628800, "factorial(10) must return 3628800.");'
```
</section>
## Challenge Seed
<section id='challengeSeed'>
<div id='js-seed'>
```js
function Y(f) {
return function() {
// Good luck!
};
}
var factorial = Y(function(f) {
return function (n) {
return n > 1 ? n * f(n - 1) : 1;
};
});
```
</div>
### After Test
<div id='js-teardown'>
```js
console.info('after the test');
```
</div>
</section>
## Solution
<section id='solution'>
```js
// solution required
```
</section>