DOC PREVIEW
Duke CPS 100E - Solving Problems Recursively

This preview shows page 1-2-22-23 out of 23 pages.

Save
View full document
View full document
Premium Document
Do you want full access? Go Premium and unlock all 23 pages.
Access to all documents
Download any document
Ad free experience
View full document
Premium Document
Do you want full access? Go Premium and unlock all 23 pages.
Access to all documents
Download any document
Ad free experience
View full document
Premium Document
Do you want full access? Go Premium and unlock all 23 pages.
Access to all documents
Download any document
Ad free experience
View full document
Premium Document
Do you want full access? Go Premium and unlock all 23 pages.
Access to all documents
Download any document
Ad free experience
Premium Document
Do you want full access? Go Premium and unlock all 23 pages.
Access to all documents
Download any document
Ad free experience

Unformatted text preview:

CompSci 100E10.1Solving Problems Recursivelyÿ Recursion is an indispensable tool in a programmer’s toolkit Allows many complex problems to be solved simply Elegance and understanding in code often leads to better programs: easier to modify, extend, verify (and sometimes more efficient!!) Sometimes recursion isn’t appropriate, when it’s bad it can be very bad---every tool requires knowledge and experience in how to use itÿ The basic idea is to get help solving a problem from coworkers (clones) who work and act like you do Ask clone to solve a simpler but similar problem Use clone’s result to put together your answerÿ Need both concepts: call on the clone and use the resultCompSci 100E10.2Print words entered, but backwardsÿ Can use a vector, store all the words and print in reverse order The vector is probably the best approach, but recursion works toovoid printReversed() { // some I/O details omittedString word;word = console.readLine();if (word.length() > 0) { // get something?printReversed(); // print the rest reversedSystem.out.println(word); // then print the word}}// somewhere in main---.printReversed(); The function printReversed reads a word, prints the word only after the clones finish printing in reverse order Each clone has its own version of the code, its own word variableCompSci 100E10.3Exponentiationÿ Computing xnmeans multiplying n numbers (or does it?) What’s the easiest value of n to compute xn? If you want to multiply only once, what can you ask a clone?double power(double x, int n)// post: returns x^n{if (n == 0){return 1.0;}return x * power(x, n-1);}ÿ What about an iterative version?CompSci 100E10.4Faster exponentiationÿ How many recursive calls are made to computer 21024? How many multiplies on each call? Is this better?double power(double x, int n)// post: returns x^n{if (n == 0) {return 1.0;}double semi = power(x, n/2);if (n % 2 == 0) {return semi*semi;}return x * semi * semi;}ÿ What about an iterative version of this function?CompSci 100E10.5Keys to Recursionÿ Recursive functions have two key attributes There is a base case, sometimes called the halting or exit case, which does notmake a recursive callo See print reversed, exponentiation, factorial for examples All other cases make a recursive call, with some parameter or other measure that decreases or moves towards the base caseo Ensure that sequence of calls eventually reaches the base caseo “Measure” can be tricky, but usually it’s straightforwardÿ Example: sequential search in a vector If first element is search key, done and return Otherwise look in the “rest of the vector” How can we recurse on “rest of vector”?CompSci 100E10.6Classic examples of recursionÿ For some reason, computer science uses these examples: Factorial: we can use a loop or recursion. Is this an issue? Fibonacci numbers: 1, 1, 2, 3, 5, 8, 13, 21, …o F(n) = F(n-1) + F(n-2), why isn’t this enough? What’s needed?o Classic example of bad recursion, to compute F(6), the sixth Fibonacci number, we must compute F(5) and F(4). What do we do to compute F(5)? Why is this a problem? Towers of Hanoio N disks on one of three pegs, transfer all disks to another peg, never put a disk on a smaller one, only on largero Every solution takes “forever” when N, number of disks, is largeCompSci 100E10.7Fibonacci: Don’t do this recursivelylong recFib(int n)// precondition: 0 <= n// postcondition: returnsthe n-th Fibonaccinumber{if (0 == n || 1 == n) {return 1;}else {return recFib(n-1) +recFib(n-2);}}ÿ How many clones/calls to compute F(5)?543 232021110101How many calls of F(1)?How many total calls?consider caching codeCompSci 100E10.8Towers of Hanoiÿ The origins of the problem may be in the far eastÿ Move n disks from one peg to another in a set of threevoid move(int from, int to, int aux,int numDisks)// pre: numDisks on peg # from,// move to peg # to// post: disks moved from peg 'from‘// to peg 'to' via 'aux'{if (numDisks == 1) {System.out.println("move " + from + " to " + to );}else {move(from,aux,to, numDisks - 1);move(from,to,aux, 1);move(aux,to,from, numDisks - 1);}}Peg#1 #2 #3CompSci 100E10.9What’s better: recursion/iteration?ÿ There’s no single answer, many factors contribute Ease of developing code assuming other factors ok Efficiency (runtime or space) can matter, but don’t worry about efficiency unless you know you have toÿ In some examples, like Fibonacci numbers, recursive solution does extra work, we’d like to avoid the extra work Iterative solution is efficient The recursive inefficiency of “extra work” can be fixed if we remember intermediate solutions: instance variablesÿ Instance variable: maintains value over all function calls Local variables created each time function calledCompSci 100E10.10Fixing recursive Fibonaccilong[] storage = new long[31];long recFib(int n) {// pre: 0 <= n <= 30// post: returns the n-th Fibonacci numberArrays.fill(storage, 0);return recF (n);}long recF(int n){if (0 == n || 1 == n) return 1;else if (storage[n] != 0) return storage[n];else {storage[n] = recF(n-1) + recF(n-2);return storage[n];}}ÿWhat does storage do? Why initialize to all zeros? Instance variables initialized first time function called Maintain values over calls, not reset or re-initializedCompSci 100E10.11Thinking recursivelyÿ Problem: find the largest element in a vector Iteratively: loop, remember largest seen so far Recursive: find largest in [1..n], then compare to 0thelementdouble max(double[] a)// pre: a contains a.length elements, 0 < a.length// post: return maximal element of a{int k;double max = a[0];for(k=0; k < a.size(); k++) {if (max < a[k]) max = a[k];}return max;} In a recursive version what is base case, what is measure of problem size that decreases (towards base case)?CompSci 100E10.12Recursive Maxdouble recMax(double[] a, int first)// pre: a contains a.length elements, 0 < a.length// first < a.length// post: return maximal element a[first..length-1]{if (first == a.length-1){ // last element, donereturn a[first];}double maxAfter = recMax(a, first+1);if (maxAfter < a[first]) return a[first];else return maxAfter;}ÿWhat is base case (conceptually)?ÿ We can use recMax to implement max as followsreturn recMax(a,0);CompSci 100E10.13Recognizing recursion:void change(int[] a, int first, int last)// post: a is changed{if (first < last){int temp = a[first]; // swap


View Full Document

Duke CPS 100E - Solving Problems Recursively

Documents in this Course
Topics

Topics

9 pages

Lecture

Lecture

3 pages

Notes

Notes

2 pages

Hashing

Hashing

19 pages

Lecture

Lecture

59 pages

Lecture

Lecture

6 pages

Lecture

Lecture

4 pages

Lecture

Lecture

20 pages

Lecture

Lecture

12 pages

Lecture

Lecture

12 pages

Lecture

Lecture

7 pages

Lecture

Lecture

8 pages

Lecture

Lecture

10 pages

Lecture

Lecture

4 pages

Notes

Notes

16 pages

Lecture

Lecture

5 pages

Lecture

Lecture

9 pages

Lecture

Lecture

4 pages

Lecture

Lecture

13 pages

Lecture

Lecture

6 pages

Lecture

Lecture

16 pages

Lecture

Lecture

5 pages

Lecture

Lecture

5 pages

Lecture

Lecture

12 pages

Lecture

Lecture

12 pages

Lecture

Lecture

10 pages

Sets

Sets

14 pages

Lecture

Lecture

9 pages

Lecture

Lecture

4 pages

Test 1

Test 1

7 pages

Load more
Download Solving Problems Recursively
Our administrator received your request to download this document. We will send you the file to your email shortly.
Loading Unlocking...
Login

Join to view Solving Problems Recursively and access 3M+ class-specific study document.

or
We will never post anything without your permission.
Don't have an account?
Sign Up

Join to view Solving Problems Recursively 2 2 and access 3M+ class-specific study document.

or

By creating an account you agree to our Privacy Policy and Terms Of Use

Already a member?