Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
82 changes: 63 additions & 19 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,15 +1,27 @@
# Recursion Problems

## Definitions
Define the following:
Define the following:

- Recursion
Recursion is where a function calls on itself, the solution to the problem may consist of smaller instances of the same function.

- Recursive Case
The recursive case is an instance where a function will call on itself for the result.
- Base Case
The base case is the lowest level case that the recursive case works towards. If the base case is never reached, the recursion will become an infinite recursion.

- Activation Chain/Stack
The Activation Chain or stack is the series of functions that were required to arrive at the result.

- Activation Record/Call
The activation record is the memory that contains all the information to keep track of the functions being run, these consist of parameters, variables, return values, etc.

- Infinite Recursion/Stack Overflow/Stack too deep
This means that the recursion is calling itself infinitely and a solution can't be reached (or that no solution is possible).

- Tail Recursion
I think that tail recursion means that rather than performing all your recursion calls first before returning back to calculate the results, you first perform all your calculations then move to the next recursive step. In this way, some efficiency is gained as you don't need to go through the activation chain all over again to perform the recursion.

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I didn't go over this in class, but this is mostly right. I may cover in the future, but it's not terribly important at this moment.


## Tracing through a recursive method

Expand All @@ -24,9 +36,9 @@ def mystery1(n)
end
```

- What is mystery1(5)?
- What is mystery1(10)?
- What is mystery1(0)?
- What is mystery1(5)? 15
- What is mystery1(10)? 55
- What is mystery1(0)? infinite recursion

### Trace #2
```
Expand All @@ -39,10 +51,21 @@ def mystery2(n)
end
```

- What is mystery2(123)?
- What is mystery2(9005)?
- What is mystery2(-123)?
- What is mystery2(123)? 6
- What is mystery2(9005)? 14
- What is mystery2(-123)? -123
- _Added Fun: How could we make `mystery2(-123)` work the way we might expect it to work instead of the way it does?_
We could change the first part of the if statement to an absolute statement,

```
def mystery2(n)
if n.abs < 10
return n
else
return (n%10) + mystery2(n/10)
end
end

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Hmm... This will definitely change the behavior of what the method does, but perhaps I should have specified what "the way we might expect it to work" is. I wold expect mystery2(-123) to produce -6 not 6. If you expected 6, then your solution is correct. If you wanted -6, then it's not.

```

### Trace #3
```
Expand All @@ -60,9 +83,9 @@ def mystery3(n)
end
```

- What is mystery3(1)?
- What is mystery3(13)?
- What is mystery3(-6)?
- What is mystery3(1)? 100
- What is mystery3(13)? 100
- What is mystery3(-6)? 200

### Trace #4
```
Expand All @@ -75,9 +98,9 @@ def mystery4(b,e)
end
```

- What is mystery4(10,2)?
- What is mystery4(4,3)?
- What is mystery4(5,0)?
- What is mystery4(10,2)? 100
- What is mystery4(4,3)? 64
- What is mystery4(5,0)? 1

### Trace #5
```
Expand All @@ -90,11 +113,32 @@ def mystery5(s)
end
```

- What is mystery5("hi")?
- What is mystery5("")?
- What is mystery5("Hi, there!")?
- What is mystery5("hi")? "**"
- What is mystery5 ""
- What is mystery5("Hi, there!")? "**********"
- _Added Fun: How could we make only alphabetic characters to be changed to stars?_

We could make change it to the following,

```
chars = ('a'..'z').to_a + ('A'..'Z').to_a

def mystery5(s)

chars = ('a'..'z').to_a + ('A'..'Z').to_a

if s.length == 0
return ""
else
if chars.include? s[0]
return "*" + mystery5(s[1..-1])
else
return mystery5(s[1..-1])
end
end
end
```

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Nice job! A couplet things to consider here.

  1. Regex would make this potentially a more sophisticated solution, but yours is maybe easier to read.

  2. Is your assumption that we would want to strip out all non-alpha characters? That's what your solution would produce ==> mystery5("Hi, there!") would be "*******", but what if we wanted it to be "**, *****!" which is what I intended. I will make these instructions more clear for my next iteration of this assignment.


### Trace #6
```
def mystery6(s)
Expand All @@ -110,7 +154,7 @@ def mystery6(s)
end
```

- What is mystery6("goodnight moon")?
- What is mystery6("Ada Developers Academy")?
- What is mystery6("Hi, there!")?
- What is mystery6("goodnight moon")? " moon goodnight"
- What is mystery6("Ada Developers Academy")? " Academy Developers Ada"
- What is mystery6("Hi, there!")? " there Hi,"
- _Added Fun: How could we make the reversal happen by letter, instead of by word (i.e. Make it so that mystery6("goodnight moon") returned "noom thgindoog")?_