简体   繁体   English

JavaScript递归

[英]JavaScript Recursion

Would someone be kind enough to explain this program (taken from a book tutorial) step by step in plain language to help me understand recursion? 有人会用普通的语言逐步解释这个程序(取自书籍教程),以帮助我理解递归吗?

var reverseArray = function(x,indx,str) {
return indx == 0 ? str : reverseArray(x, --indx, (str+= " " + x[indx]));;
}

var arr = new Array('apple', 'orange', 'peach', 'lime');
var str = reverseArray(arr,arr.length,"");
alert(str);

var arr2 = ['car','boat','sun','computer'];
str = reverseArray(arr2,arr2.length."");
alert(str);

Sure, but it's probably easier to read written like this: 当然可以,但这样写起来可能更容易阅读:

var reverseArray = function(x,indx,str) {
    if (indx === 0) { // Termination condition
        return str; // return default
    } else {
        return reverseArray(x, --indx, str + " " + x[indx]); // recur on x, reduce indx, update default
    }
}

Recursion is just a function calling itself, right? 递归只是一个调用自身的函数,对吗? The important thing is the termination condition that prevents the function from calling itself forever. 重要的是终止条件,可以防止函数永远调用自身。 In this case that's this line: 在这种情况下,这是此行:

if (indx === 0)…

As long as indx is not 0, the function will continue to call itself with updated arguments. 只要indx不为0,该函数将继续使用更新后的参数调用自身。 The subsequent call does the same thing, but the final product str contains the value passed from the parent call to reverseArray . 后续调用执行相同的操作,但是最终产品str包含从父调用传递给reverseArray Eventually indx reaches zero and the value of str is the combined value passed down from parent to child. 最终indx达到零,而s​​tr的值是从父级传递到子级的组合值。 That is what is returned by the line: 这是该行返回的内容:

return str; // ' lime peach orange apple'

It gets returned to its parent, and its parent returns that to its parent and so on until the top-most frame is reached. 它返回到其父级,并且其父级将其返回给其父级,依此类推,直到到达最顶层。

arr = new Array('apple', 'orange', 'peach', 'lime');
reverseArray(arr,arr.length,""); // ['apple', 'orange', 'peach', 'lime'], 4, ""
+['apple', 'orange', 'peach', 'lime'], 3, "" + " " + x[3] = " lime";
++['apple', 'orange', 'peach', 'lime'], 2, " lime" + " " + x[2] = " lime peach";
+++['apple', 'orange', 'peach', 'lime'], 1, " lime peach" + " " + x[1] = " lime peach orange";
++++['apple', 'orange', 'peach', 'lime'], 0, " lime peach orange" + " " + x[0] = " lime peach orange apple"; // indx == 0, so this string returns

Would the following suffice? 以下足够吗?

// declare a variable which is to be the function for reversing the array
var reverseArray = function(x,indx,str) {
// check if the index has reached zero. if it did, return the concatenated string,
// else concatenate the string with the next item in the array at the current index.
// for each subsequent call to the function, the index is decreased by one, working 
// the array backwards.
return indx == 0 ? str : reverseArray(x, --indx, (str+= " " + x[indx]));;
}

// declare an array of fruit
var arr = new Array('apple', 'orange', 'peach', 'lime');
// declare a variable and assign it's value to the result of the recursive function,
// sending through the fruit array, the amount of items in it and an empty string as
// parameters to the function.
var str = reverseArray(arr,arr.length,"");
// show a dialogue box with the result of the function
alert(str);

// do the same as in the fruit example...
var arr2 = ['car','boat','sun','computer'];
str = reverseArray(arr2,arr2.length."");
alert(str);

One of the easiest ways to look at it is, think of it as calling another function having the same logic. 最简单的查看方法之一是,将其视为调用具有相同逻辑的另一个函数。 Each function calls another function until a termination condition is met, in this case indx==0. 每个函数都调用另一个函数,直到满足终止条件为止,在这种情况下,indx == 0。 At that point, it stops calling another function and returns str. 此时,它将停止调用另一个函数并返回str。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM