Top Banner
Recursion Textbook chapter 18 1
47

Recursion Textbook chapter 18 1. 2 Recursive Function Call a recursive call is a function call in which the called function is the same as the one making.

Dec 31, 2015

Download

Documents

Muriel Griffin
Welcome message from author
This document is posted to help you gain knowledge. Please leave a comment to let me know what you think about it! Share it to your friends and learn new things together.
Transcript
Page 1: Recursion Textbook chapter 18 1. 2 Recursive Function Call a recursive call is a function call in which the called function is the same as the one making.

Recursion

Textbook chapter 18

1

Page 2: Recursion Textbook chapter 18 1. 2 Recursive Function Call a recursive call is a function call in which the called function is the same as the one making.

2

Recursive Function Call

• a recursive call is a function call in which the called function is the same as the one making the call

• in other words, recursion occurs when a function calls itself!

• but we need to avoid making an infinite sequence of function calls (infinite recursion)

Page 3: Recursion Textbook chapter 18 1. 2 Recursive Function Call a recursive call is a function call in which the called function is the same as the one making.

3

Finding a Recursive Solution

• a recursive solution to a problem must be written carefully

• the idea is for each successive recursive call to bring you one step closer to a situation in which the problem can easily be solved

• this easily solved situation is called the base case

• each recursive algorithm must have at least one base case,

as well as a general (recursive) case

Page 4: Recursion Textbook chapter 18 1. 2 Recursive Function Call a recursive call is a function call in which the called function is the same as the one making.

4

General format forMany Recursive Functions

if (some easily-solved condition) // base case

solution statement

else // general case

recursive function call

SOME EXAMPLES . . .

Page 5: Recursion Textbook chapter 18 1. 2 Recursive Function Call a recursive call is a function call in which the called function is the same as the one making.

5

Writing a Recursive Function to Find the Sum of the Numbers from 1 to n

DISCUSSION

The function call Summation(4) should have value 10, because that is 1 + 2 + 3 + 4 .

For an easily-solved situation, the sum of the numbers from 1 to 1 is certainly just 1.

So our base case could be along the lines of

if ( n == 1 )

return 1;

Page 6: Recursion Textbook chapter 18 1. 2 Recursive Function Call a recursive call is a function call in which the called function is the same as the one making.

6

Writing a Recursive Function to Find the Sum of the Numbers from 1 to n

Now for the general case. . .

The sum of the numbers from 1 to n, that is,

1 + 2 + . . . + n can be written as

n + the sum of the numbers from 1 to (n - 1),

that is, n + 1 + 2 + . . . + (n - 1)

or, n + Summation(n - 1)

And notice that the recursive call Summation(n - 1) gets us “closer” to the base case of Summation(1)

Page 7: Recursion Textbook chapter 18 1. 2 Recursive Function Call a recursive call is a function call in which the called function is the same as the one making.

7

Finding the Sum of the Numbers from 1 to nint Summation ( /* in */ int n )

// Computes the sum of the numbers from 1 to n by

// adding n to the sum of the numbers from 1 to (n-1)

// Precondition: n is assigned && n > 0

// Postcondition:

// Function value == sum of numbers from 1 to n

{

if ( n == 1) // base case

return 1 ;else // general case

return ( n + Summation ( n - 1 ) ) ;

} 7

Page 8: Recursion Textbook chapter 18 1. 2 Recursive Function Call a recursive call is a function call in which the called function is the same as the one making.

8

Returns 4 + Summation(3) = 4 + 6 = 10

Call 1:Summation(4)

Returns 3 + Summation(2) = 3 + 3 = 6

Call 2:Summation(3)

Returns 2 + Summation(1)

= 2 + 1 = 3 Call 3: Summation(2)

n==1 Returns 1

Call 4: Summation(1)

Summation(4) Trace of Call

n4

n3

n2

n1

Page 9: Recursion Textbook chapter 18 1. 2 Recursive Function Call a recursive call is a function call in which the called function is the same as the one making.

9

Writing a Recursive Function to Find n Factorial

DISCUSSION

The function call Factorial(4) should have value 24, because that is 4 * 3 * 2 * 1 .

For a situation in which the answer is known, the value of 0! is 1.

So our base case could be along the lines of

if ( number == 0 )

return 1;

Page 10: Recursion Textbook chapter 18 1. 2 Recursive Function Call a recursive call is a function call in which the called function is the same as the one making.

10

Writing a Recursive Function to Find Factorial(n)

Now for the general case . . .

The value of Factorial(n) can be written as

n * the product of the numbers from (n - 1) to 1,

that is,

n * (n - 1) * . . . * 1

or, n * Factorial(n - 1)

And notice that the recursive call Factorial(n - 1) gets us “closer” to the base case of Factorial(0).

Page 11: Recursion Textbook chapter 18 1. 2 Recursive Function Call a recursive call is a function call in which the called function is the same as the one making.

11

Recursive Solution

int Factorial ( int number )// Pre: number is assigned and number >= 0.{ if ( number == 0) // base case

return 1 ;else // general case

return number * Factorial ( number - 1 ) ;}

Page 12: Recursion Textbook chapter 18 1. 2 Recursive Function Call a recursive call is a function call in which the called function is the same as the one making.

12

void PrintStars ( /* in */ int n )// Prints n asterisks, one to a line

// Precondition: n is assigned

// Postcondition:

// IF n > 0, n stars have been printed, one to a line

// ELSE no action has taken place

{

if ( n <= 0 ) // base case

// Do nothing

else // general case

{ cout << ‘’ << endl ;

PrintStars ( n - 1 ) ;

}

}

At Times Base Case Can Be:Do Nothing

// CAN REWRITE AS . . .12

Page 13: Recursion Textbook chapter 18 1. 2 Recursive Function Call a recursive call is a function call in which the called function is the same as the one making.

13

Recursive Void Functionvoid PrintStars ( /* in */ int n )// Prints n asterisks, one to a line

// Precondition: n is assigned

// Postcondition:

// IF n > 0, n stars have been printed, one to a line

// ELSE no action has taken place

{

if ( n > 0 ) // general case

{ cout << ‘’ << endl ;

PrintStars ( n - 1 ) ;

}

// base case is empty else-clause

}13

Page 14: Recursion Textbook chapter 18 1. 2 Recursive Function Call a recursive call is a function call in which the called function is the same as the one making.

14

Call 1: PrintStars(3)

* is printed

Call 2:PrintStars(2)

* is printed

Call 3:PrintStars(1)

* is printed

Call 4: PrintStars(0)

Do nothing

PrintStars(3) Trace of Call

n3

n2

n1

n0

Page 15: Recursion Textbook chapter 18 1. 2 Recursive Function Call a recursive call is a function call in which the called function is the same as the one making.

15

Writing a Recursive Function to Print Array Elements in Reverse Order

DISCUSSION

For this task, we will use the prototype:

void PrintRev( const int data[ ], int first, int last );

6000

The call

PrintRev ( data, 0, 3 );

should produce this output: 95 87 36 74

74 36 87 95

data[0] data[1] data[2] data[3]

Page 16: Recursion Textbook chapter 18 1. 2 Recursive Function Call a recursive call is a function call in which the called function is the same as the one making.

16

Base Case and General Case

A base case may be a solution in terms of a “smaller” array. Certainly for an array with 0 elements, there is no more processing to do.

Now our general case needs to bring us closer to the base case situation. That is, the length of the array to be processed decreases by 1 with each recursive call. By printing one element in the general case, and also processing the smaller array, we will eventually reach the situation where 0 array elements are left to be processed.

In the general case, we could print either the first element, that is, data[first]. Or we could print the last element, that is, data[last]. Let’s print data[last]. After we print data[last], we still need to print the remaining elements in reverse order.

Page 17: Recursion Textbook chapter 18 1. 2 Recursive Function Call a recursive call is a function call in which the called function is the same as the one making.

17

Using Recursion with Arraysvoid PrintRev ( /* in */ const int data [ ] , // Array to be printed

/* in */ int first , // Index of first element /* in */ int last ) // Index of last element

// Prints array elements data [ first. . . last ] in reverse order // Precondition: first assigned && last assigned// && if first <= last then data [first . . last ] assigned{ if ( first <= last ) // general case

{cout << data [ last ] << “ “ ; // print last element

PrintRev ( data, first, last - 1 ) ; // then process the rest}

// Base case is empty else-clause} 17

Page 18: Recursion Textbook chapter 18 1. 2 Recursive Function Call a recursive call is a function call in which the called function is the same as the one making.

18

PrintRev(data, 0, 2) Trace

Call 1: PrintRev(data, 0, 2)data[2] printed

Call 2: PrintRev(data, 0, 1) data[1] printed

Call 3:PrintRev(data, 0, 0)data[0] printed

Call 4: PrintRev(data, 0, -1)

NOTE: data address 6000 is also passed Do nothing

first 0last 2

first 0last 1

first 0last 0

first 0last -1

Page 19: Recursion Textbook chapter 18 1. 2 Recursive Function Call a recursive call is a function call in which the called function is the same as the one making.

19

Recursive Functions

You can have:• One base case and one recursive case• An empty (does nothing) base case• Multiple base cases• Multiple recursive cases• But you MUST always have a base case (even

if it does nothing) to avoid infinite recursion

Page 20: Recursion Textbook chapter 18 1. 2 Recursive Function Call a recursive call is a function call in which the called function is the same as the one making.

20

“Why use recursion?”

These examples could all have been written without recursion, by using iteration instead. The iterative solution uses a loop, and the recursive solution uses an if statement.

However, for certain problems the recursive solution is the most natural solution. This often occurs when data structures (for example, linked lists, trees) are used.

Page 21: Recursion Textbook chapter 18 1. 2 Recursive Function Call a recursive call is a function call in which the called function is the same as the one making.

21

Recursion with Linked Lists

For certain problems the recursive solution is the most natural solution.

This often occurs when pointer variables are used.

For example: print the nodes of a linked list in reverse order

Page 22: Recursion Textbook chapter 18 1. 2 Recursive Function Call a recursive call is a function call in which the called function is the same as the one making.

22

struct NodeType{

char component ;NodeType* link ;

}

NodeType* head ;

struct NodeType

Page 23: Recursion Textbook chapter 18 1. 2 Recursive Function Call a recursive call is a function call in which the called function is the same as the one making.

23

RevPrint(head);

‘A’ ‘B’ ‘C’ ‘D’ ‘E’

FIRST, print out this section of list, backwards

THEN, print this element

head

Page 24: Recursion Textbook chapter 18 1. 2 Recursive Function Call a recursive call is a function call in which the called function is the same as the one making.

24

Recall that . . .

• recursion occurs when a function calls itself (directly or indirectly)

• recursion can be used in place of iteration (looping)

• some functions can be written more easily using recursion

Page 25: Recursion Textbook chapter 18 1. 2 Recursive Function Call a recursive call is a function call in which the called function is the same as the one making.

25

Recursion or Iteration?

EFFICIENCYCLARITY

Page 26: Recursion Textbook chapter 18 1. 2 Recursive Function Call a recursive call is a function call in which the called function is the same as the one making.

26

Iteration (Loop) vs. Recursion

• Iteration: efficient (faster, minimum memory requirement)

• Recursion: For some problems, simpler to write and understand than the iterative version

• However for a problem requiring deep recursion you may run out of memory, or it may take an extremely long time to run

Page 27: Recursion Textbook chapter 18 1. 2 Recursive Function Call a recursive call is a function call in which the called function is the same as the one making.

27

When a function is called...

• a transfer of control occurs from the calling block to the code of the function--it is necessary that there be a return to the correct place in the calling block after the function code is executed; this correct place is called the return address

• when any function is called, the run-time stack is used--on this stack is placed an activation record for the function call

Page 28: Recursion Textbook chapter 18 1. 2 Recursive Function Call a recursive call is a function call in which the called function is the same as the one making.

28

Stack Activation Frames

• the activation record contains the return address for this function call, and also the parameters, and local variables, and space for the function’s return value, if non-void

• the activation record for a particular function call is popped off the run-time stack when the final closing brace in the function code is reached, or when a return statement is reached in the function code

• at this time the function’s return value, if non-void, is brought back to the calling block return address for use there

Page 29: Recursion Textbook chapter 18 1. 2 Recursive Function Call a recursive call is a function call in which the called function is the same as the one making.

29

// Another recursive function

int Func ( /* in */ int a, /* in */ int b )

// Pre: Assigned(a) && Assigned(b)// Post: Function value == ??

{ int result;

if ( b == 0 ) // base case

result = 0;

else if ( b > 0 ) // first general case

result = a + Func ( a , b - 1 ) ; // instruction 50

else // second general caseresult = Func ( - a , - b ) ; // instruction 70

return result;

} 29

Page 30: Recursion Textbook chapter 18 1. 2 Recursive Function Call a recursive call is a function call in which the called function is the same as the one making.

30

FCTVAL ? result ? b 2 a 5Return Address 100

Run-Time Stack Activation Records

x = Func(5, 2); // original call at instruction 100

original call at instruction 100 pushes on this record for Func(5,2)

Page 31: Recursion Textbook chapter 18 1. 2 Recursive Function Call a recursive call is a function call in which the called function is the same as the one making.

31

FCTVAL ? result ? b 1 a 5Return Address 50

FCTVAL ? result 5+Func(5,1) = ? b 2 a 5Return Address 100

record for Func(5,2)

call in Func(5,2) codeat instruction 50 pushes on this recordfor Func(5,1)

Run-Time Stack Activation Records

x = Func(5, 2); // original call at instruction 100

Page 32: Recursion Textbook chapter 18 1. 2 Recursive Function Call a recursive call is a function call in which the called function is the same as the one making.

32

FCTVAL ? result ? b 0 a 5Return Address 50

FCTVAL ? result 5+Func(5,0) = ? b 1 a 5Return Address 50

FCTVAL ? result 5+Func(5,1) = ? b 2 a 5Return Address 100

record for Func(5,2)

record for Func(5,1)

call in Func(5,1) codeat instruction 50pushes on this record for Func(5,0)

Run-Time Stack Activation Records

x = Func(5, 2); // original call at instruction 100

Page 33: Recursion Textbook chapter 18 1. 2 Recursive Function Call a recursive call is a function call in which the called function is the same as the one making.

33

FCTVAL 0 result 0 b 0 a 5Return Address 50

FCTVAL ? result 5+Func(5,0) = ? b 1 a 5Return Address 50

FCTVAL ? result 5+Func(5,1) = ? b 2 a 5Return Address 100

record for Func(5,0)is popped first with its FCTVAL

Run-Time Stack Activation Records

x = Func(5, 2); // original call at instruction 100

record for Func(5,2)

record for Func(5,1)

Page 34: Recursion Textbook chapter 18 1. 2 Recursive Function Call a recursive call is a function call in which the called function is the same as the one making.

34

record for Func(5,2)

record for Func(5,1)is popped nextwith its FCTVAL

Run-Time Stack Activation Records

x = Func(5, 2); // original call at instruction 100

FCTVAL 5 result 5+Func(5,0) = 5+ 0 b 1 a 5Return Address 50

FCTVAL ? result 5+Func(5,1) = ? b 2 a 5Return Address 100

Page 35: Recursion Textbook chapter 18 1. 2 Recursive Function Call a recursive call is a function call in which the called function is the same as the one making.

35

FCTVAL 10 result 5+Func(5,1) = 5+5 b 2 a 5Return Address 100

record for Func(5,2)is popped lastwith its FCTVAL

Run-Time Stack Activation Records

x = Func(5, 2); // original call at instruction 100

Page 36: Recursion Textbook chapter 18 1. 2 Recursive Function Call a recursive call is a function call in which the called function is the same as the one making.

36

Towers of Hanoi

The Towers of Hanoi problem is an example of a problem that is easy to solve with recursion, difficult to solve with iteration

Page 37: Recursion Textbook chapter 18 1. 2 Recursive Function Call a recursive call is a function call in which the called function is the same as the one making.

37

Page 38: Recursion Textbook chapter 18 1. 2 Recursive Function Call a recursive call is a function call in which the called function is the same as the one making.

38

Tower of Hanoi

• The rules for moving disks are as follows:

– Only one disk can be moved at a time

– The removed disk must be placed on one of the needles

– A larger disk cannot be placed on top of a smaller disk

Page 39: Recursion Textbook chapter 18 1. 2 Recursive Function Call a recursive call is a function call in which the called function is the same as the one making.

39

Tower of Hanoi (continued)

• This recursive algorithm translates into the following C++ function:

Page 40: Recursion Textbook chapter 18 1. 2 Recursive Function Call a recursive call is a function call in which the called function is the same as the one making.

40

Page 41: Recursion Textbook chapter 18 1. 2 Recursive Function Call a recursive call is a function call in which the called function is the same as the one making.

41

Programming Example

• Use recursion to convert a non-negative integer in decimal format (base 10) into the equivalent binary number (base 2)

• Define some terms:

– Let x be an integer

– The remainder of x after division by 2 is the rightmost bit of x

– The rightmost bit of 33 is 1 because 33 % 2 is 1

– The rightmost bit of 28 is 0 because 28 % 2 is 0

Page 42: Recursion Textbook chapter 18 1. 2 Recursive Function Call a recursive call is a function call in which the called function is the same as the one making.

42

Programming Example (continued)

• To find the binary representation of 35– Divide 35 by 2– The quotient is 17 and the remainder is 1– Divide 17 by 2– The quotient is 8 and the remainder is 1– Divide 8 by 2– The quotient is 4 and the remainder is 0– Continue this process until the quotient becomes 0

Page 43: Recursion Textbook chapter 18 1. 2 Recursive Function Call a recursive call is a function call in which the called function is the same as the one making.

43

Programming Example (continued)

• The rightmost bit of 35 cannot be printed until we have printed the rightmost bit of 17

• The rightmost bit of 17 cannot be printed until we have printed the rightmost bit of 8, and so on

Page 44: Recursion Textbook chapter 18 1. 2 Recursive Function Call a recursive call is a function call in which the called function is the same as the one making.

44

Programming Example (continued)

• The binary representation of 35 is the binary representation of 17 (the quotient of 35 after division by 2) followed by the rightmost bit of 35

– binary(num) = num if num = 0

– binary(num) = binary(num/2) followed by num%2 if num > 0

Page 45: Recursion Textbook chapter 18 1. 2 Recursive Function Call a recursive call is a function call in which the called function is the same as the one making.

45

Page 46: Recursion Textbook chapter 18 1. 2 Recursive Function Call a recursive call is a function call in which the called function is the same as the one making.

46

Summary

• The process of solving a problem by reducing it to smaller versions of itself is called recursion

• A function is called recursive if it calls itself

• Every recursive definition has one or more base cases

• The solution to the problem in a base case is obtained directly

Page 47: Recursion Textbook chapter 18 1. 2 Recursive Function Call a recursive call is a function call in which the called function is the same as the one making.

47

Summary

• The general case must eventually be reduced to a base case

• The base case stops the recursion