-
Notifications
You must be signed in to change notification settings - Fork 30
Queues - Ting Wong - Recursion Tracing #34
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: master
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| 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. | ||
|
|
||
| ## Tracing through a recursive method | ||
|
|
||
|
|
@@ -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 | ||
| ``` | ||
|
|
@@ -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 | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe 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 | ||
| ``` | ||
|
|
@@ -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 | ||
| ``` | ||
|
|
@@ -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 | ||
| ``` | ||
|
|
@@ -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 | ||
| ``` | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Nice job! A couplet things to consider here.
|
||
|
|
||
| ### Trace #6 | ||
| ``` | ||
| def mystery6(s) | ||
|
|
@@ -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")?_ | ||
There was a problem hiding this comment.
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.