EXAMPLE SENTENCES | ||
---|---|---|
接下来,创建递归函数。 "Next, you'll create a recursive function." | ||
可见,递归函数与循环有很多类似之处。 As you can see, recursive functions and loops have quite a bit in common. | ||
将一个常见的循环转化为递归函数。 Converting a common loop to a recursive function. | ||
下面的函数是递归地计算二项式系数的。 The following is a function computes the binomial coefficient recursively. | ||
利用递推格林函数技术计算了多终端量子体系的电子输运特性,首先运用递归方法给出介观或量子体系的格林函数。 We have introduced a method for the calculation of electron transport in a multi_terminal quantum system based on the recursive Green's function technique. | ||
此方法不区分递归顺序。 This method is not sensitive to recursion order. | ||
内部函数是函数体紧跟函数声明之后的标准函数。 An internal function is a standard function where the function body follows the function declaration. | ||
递归方法也需要显式的返回类型。 Recursive methods also require an explicit return type. | ||
如果你还不明白什么是递归,就读这个句子。 If you still don't know what recursion is, read this sentence. | ||
为了归约每个消息之后的规则,使用的是向左递归。 Left recursion is used so that the rule can be reduced after each message. | ||