You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: recursion/README.md
+5-7
Original file line number
Diff line number
Diff line change
@@ -3,11 +3,11 @@
3
3
Recursion is a computational technique that implements a [divide-and-conquer](../dnc) approach to problem-solving by breaking down a complex problem into smaller sub-problems. It consists of two components:
4
4
5
5
* One or more base cases that provide output for simple inputs and terminate recursion
6
-
* A recursive case that combines the outputs obtained from recursive function calls to generate a solution for the original problem.
6
+
* A recursive case that combines the outputs obtained from recursive function calls to generate a solution for the original problem
7
7
8
8
Although recursions enhance code readability, they are usually inefficient and challenging to debug. Consequently, unless they provide a more efficient solution to a problem, such as in the case of [quicksort](../dnc/quick_sort_test.go), they are generally not preferred.
9
9
10
-
During execution, a program typically stores function variables in a memory area known as the stack before executing recursion. The recursive function may assign different values to the same variables during each recursion. When the recursion ends, the stack pops and remembers the values. However, the stack will grow with each call if recursion continues indefinitely, causing the familiar stack overflow error. Since recursion employs the stack to execute, every recursive problem can be converted into an iterative one. This transformation, however, typically leads to more complex code and may require a [stack](../stack).
10
+
During execution, a program typically stores function variables in a memory area known as the stack before executing recursion. The recursive function may assign different values to the same variables that are stored separately for each call during each recursion. When the recursion ends, the stack pops and remembers the values. However, the stack will grow with each call if recursion continues indefinitely, causing the familiar stack overflow error. Since recursion employs the stack to execute, every recursive problem can be converted into an iterative one. This transformation, however, typically leads to more complex code and may require a [stack](../stack).
11
11
12
12
## Implementation
13
13
@@ -16,9 +16,7 @@ The computation of the nth Fibonacci number can be achieved with recursion. For
16
16
```Go
17
17
package main
18
18
19
-
import (
20
-
"fmt"
21
-
)
19
+
import"fmt"
22
20
23
21
funcmain() {
24
22
fori:=1; i <= 10; i++ {
@@ -37,8 +35,8 @@ func fibonacci(n int) int {
37
35
When formulating recursive algorithms, it is essential to consider the following four rules of recursion:
38
36
39
37
1. It is imperative to establish a base case, or else the program will terminate abruptly
40
-
2. The algorithm should progress toward the base case at each recursive call.
41
-
3. Recursive calls are presumed effective; thus, traversing every recursive call and performing bookkeeping is unnecessary.
38
+
2. The algorithm should progress toward the base case at each recursive call
39
+
3. Recursive calls are presumed effective; thus, traversing every recursive call and performing bookkeeping is unnecessary
42
40
4. Use memoization, a technique that prevents redundant computation by caching previously computed results, can enhance the algorithm's efficiency.
0 commit comments