Recursive functions leverage the rules of [...] to [...], often avoiding the nuisance of [...] during iteration.
Answer
evaluating call expressions, bind names to values, correctly assigning local names
Tags
#python #sicp
Question
Recursive functions leverage the rules of [...] to [...], often avoiding the nuisance of [...] during iteration.
Answer
?
Tags
#python #sicp
Question
Recursive functions leverage the rules of [...] to [...], often avoiding the nuisance of [...] during iteration.
Answer
evaluating call expressions, bind names to values, correctly assigning local names
If you want to change selection, open original toplevel document below and click on "Move attachment"
Parent (intermediate) annotation
Open it Recursive functions leverage the rules of evaluating call expressions to bind
names to values, often avoiding the nuisance of correctly assigning local names
during iteration. For this reason, recursive functions can be easier to define
correctly. However
Original toplevel document
1.7 Recursive Functions . The
state of the computation is entirely contained within the structure of the
environment, which has return values that take the role of total , and binds
n to different values in different frames rather than explicitly tracking
k .
<span>Recursive functions leverage the rules of evaluating call expressions to bind
names to values, often avoiding the nuisance of correctly assigning local names
during iteration. For this reason, recursive functions can be easier to define
correctly. However, learning to recognize the computational processes evolved by
recursive functions certainly requires practice.
1.7.2 Mutual Recursion
Video:
Show
Hide When a recursive procedure is divided among two functions that call each other,
the functions are said to be mutually recursive. As an
Summary
status
not learned
measured difficulty
37% [default]
last interval [days]
repetition number in this series
0
memorised on
scheduled repetition
scheduled repetition interval
last repetition or drill
Details
No repetitions
Discussion
Do you want to join discussion? Click here to log in or create user.