CMSC201 Computer Science I for Majors Lecture 20 – Recursion (Continued) Prof. Katherine Gibson Based on slides from UPenn’s CIS 110, and from previous.

Slides:



Advertisements
Similar presentations
Introduction to Recursion and Recursive Algorithms
Advertisements

8 Algorithms Foundations of Computer Science ã Cengage Learning.
© Janice Regan, CMPT 102, Sept CMPT 102 Introduction to Scientific Computer Programming Recursion.
Lesson 19 Recursion CS1 -- John Cole1. Recursion 1. (n) The act of cursing again. 2. see recursion 3. The concept of functions which can call themselves.
Recursion. Binary search example postponed to end of lecture.
Scott Grissom, copyright 2004 Chapter 5 Slide 1 Analysis of Algorithms (Ch 5) Chapter 5 focuses on: algorithm analysis searching algorithms sorting algorithms.
Recursion. 2 CMPS 12B, UC Santa Cruz Solving problems by recursion How can you solve a complex problem? Devise a complex solution Break the complex problem.
Elementary Data Structures and Algorithms
COMPSCI 105 S Principles of Computer Science Recursion 3.
Recursion Chapter 7. Chapter 7: Recursion2 Chapter Objectives To understand how to think recursively To learn how to trace a recursive method To learn.
CHAPTER 10 Recursion. 2 Recursive Thinking Recursion is a programming technique in which a method can call itself to solve a problem A recursive definition.
A Computer Science Tapestry 1 Recursion (Tapestry 10.1, 10.3) l Recursion is an indispensable technique in a programming language ä Allows many complex.
1 Decrease-and-Conquer Approach Lecture 06 ITS033 – Programming & Algorithms Asst. Prof. Dr. Bunyarit Uyyanonvara IT Program, Image and Vision Computing.
Recursion Chapter 7. Chapter Objectives  To understand how to think recursively  To learn how to trace a recursive method  To learn how to write recursive.
CHAPTER 02 Recursion Compiled by: Dr. Mohammad Omar Alhawarat.
Copyright © 2010 Pearson Education, Inc. Publishing as Pearson Addison-Wesley Starting Out with Programming Logic & Design Second Edition by Tony Gaddis.
Chapter 12 Recursion, Complexity, and Searching and Sorting
Sudeshna Sarkar, IIT Kharagpur 1 Functions : Recursion Lecture
Copyright © 2007 Pearson Education, Inc. Publishing as Pearson Addison-Wesley. Ver Chapter 2: Recursion: The Mirrors Data Abstraction & Problem Solving.
COMP Recursion, Searching, and Selection Yi Hong June 12, 2015.
CSIS 123A Lecture 9 Recursion Glenn Stevenson CSIS 113A MSJC.
Copyright © 2007 Pearson Education, Inc. Publishing as Pearson Addison-Wesley. Ver Recursive Solutions Recursion is an extremely powerful problem-solving.
Data Structures R e c u r s i o n. Recursive Thinking Recursion is a problem-solving approach that can be used to generate simple solutions to certain.
Java Programming: Guided Learning with Early Objects Chapter 11 Recursion.
IB Computer Science Unit 5 – Advanced Topics Recursion.
By: Lokman Chan Recursive Algorithm Recursion Definition: A function that is define in terms of itself. Goal: Reduce the solution to.
© Janice Regan, CMPT 128, February CMPT 128: Introduction to Computing Science for Engineering Students Recursion.
8.1 8 Algorithms Foundations of Computer Science  Cengage Learning.
Searching CSE 103 Lecture 20 Wednesday, October 16, 2002 prepared by Doug Hogan.
General Computer Science for Engineers CISC 106 Lecture 06 James Atlas Computer and Information Sciences 06/24/2009.
CS 116 Object Oriented Programming II Lecture 13 Acknowledgement: Contains materials provided by George Koutsogiannakis and Matt Bauer.
CSC 143 P 1 CSC 143 Recursion [Chapter 5]. CSC 143 P 2 Recursion  A recursive definition is one which is defined in terms of itself  Example:  Compound.
CMSC201 Computer Science I for Majors Lecture 23 – Algorithms and Analysis Prof. Katherine Gibson Based on slides from previous iterations.
CMSC201 Computer Science I for Majors Lecture 19 – Recursion (Continued) Prof. Katherine Gibson Prof. Jeremy Dixon Based on slides from UPenn’s.
CMSC201 Computer Science I for Majors Lecture 19 – Recursion
Chapter 15 Recursion.
Introduction to Recursion
Recursion: The Mirrors
CMSC201 Computer Science I for Majors Lecture 23 – Sorting
Decrease-and-Conquer Approach
Chapter 15 Recursion.
Introduction to Recursion
CMSC201 Computer Science I for Majors Lecture 18 – Recursion
Intro to Computer Science CS1510, Section 2 Dr. Sarah Diesburg
MA/CSSE 473 Day 02 Some Numeric Algorithms and their Analysis
Last Class We Covered File I/O How to open a file
CMSC201 Computer Science I for Majors Lecture 24 – Sorting
Announcements Final Exam on August 17th Wednesday at 16:00.
CMSC201 Computer Science I for Majors Lecture 16 – Recursion
Applied Algorithms (Lecture 17) Recursion Fall-23
Last Class We Covered Data representation Binary numbers ASCII values
Algorithm design and Analysis
Recursion Chapter 11.
CMSC201 Computer Science I for Majors Lecture 19 – Recursion
Last Class We Covered Dictionaries Hashing Dictionaries vs Lists
CMSC201 Computer Science I for Majors Lecture 17 – Recursion (cont)
Search,Sort,Recursion.
Basics of Recursion Programming with Recursion
Announcements Last … First … … quiz section … office hour
Last Class We Covered File I/O How to open a file
Search,Sort,Recursion.
Intro to Computer Science CS1510 Dr. Sarah Diesburg
Last Class We Covered Recursion Stacks Parts of a recursive function:
Chapter 3 :Recursion © 2011 Pearson Addison-Wesley. All rights reserved.
CS210- Lecture 3 Jun 6, 2005 Announcements
Chapter 13 Recursion Copyright © 2010 Pearson Addison-Wesley. All rights reserved.
ITEC324 Principle of CS III
Recursion: The Mirrors
Presentation transcript:

CMSC201 Computer Science I for Majors Lecture 20 – Recursion (Continued) Prof. Katherine Gibson Based on slides from UPenn’s CIS 110, and from previous iterations of the course

Last Class We Covered Recursion Stacks Parts of a recursive function: Base case: when to stop Recursive case: when to go (again)

Any Questions from Last Time?

Today’s Objectives To gain a more solid understanding of recursion To explore what goes on “behind the scenes” To examine individual examples of recursion Binary Search Hailstone problem (Collatz) Fibonacci Sequence To better understand when it is best to use recursion, and when it is best to use iteration

Review of Recursion

What is Recursion? Solving a problem using recursion means the solution depends on solutions to smaller instances of the same problem In other words, to define a function or calculate a number by the repeated application of an algorithm

Recursive Procedures When creating a recursive procedure, there are a few things we want to keep in mind: We need to break the problem into smaller pieces of itself We need to define a “base case” to stop at The smaller problems we break down into need to eventually reach the base case

“Cases” in Recursion A recursive function must have two things: At least one base case When a result is returned (or the function ends) “When to stop” At least one recursive case When the function is called again with new inputs “When to go (again)”

Code Tracing: Recursion

Stacks and Tracing Stacks will help us track what we are doing when tracing through recursive code Remember, stacks are LIFO data structures Last In, First Out We’ll be doing a recursive trace of the summation function

Summation Funcion The addition of a sequence of numbers The summation of a number is that number plus all of the numbers less than it (down to 0) Summation of 5: 5 + 4 + 3 + 2 + 1 Summation of 6: 6 + 5 + 4 + 3 + 2 + 1 What would a recursive implementation look like? What’s the base case? Recursive case?

Summation Function def summ(num): if num == 0: return 0 else: return num + summ(num-1) Base case: Don’t want to go below 0 Summation of 0 is 0 Recursive case: Otherwise, summation is num + summation(num-1)

STACK main() def main(): fact(0) summ(4) fact(1) fact(2) fact(3) def summ(num): if num == 0: return 0 else: return num + summ(num-1) fact(0) fact(1) fact(2) fact(3) fact(4) main() STACK

STACK main() def main(): summ(4) def summ(num): if num == 0: return 0 else: return num + summ(num-1) STACK main()

STACK main() def main(): summ(4) def summ(num): if num == 0: return 0 else: return num + summ(num-1) num: 4 STACK summ(4) main()

main() def main(): summ(4) This is a local variable. Each time the summ() function is called, the new instance gets its own unique local variables. num = 4 def summ(num): if num == 0: return 0 else: return num + summ(num-1) num: 4 STACK summ(4) main()

STACK main() def main(): summ(4) def summ(num): if num == 0: return 0 else: return num + summ(num-1) num: 4 STACK num = 3 def summ(num): if num == 0: return 0 else: return num + summ(num-1) summ(3) num: 3 summ(4) main()

STACK def summ(num): main() if num == 0: return 0 else: return num + summ(num-1) num: 2 def main(): summ(4) num = 2 num = 4 def summ(num): if num == 0: return 0 else: return num + summ(num-1) num: 4 STACK num = 3 summ(2) def summ(num): if num == 0: return 0 else: return num + summ(num-1) summ(3) num: 3 summ(4) main()

STACK def summ(num): main() if num == 0: return 0 else: return num + summ(num-1) num: 2 def main(): summ(4) num = 2 num = 4 num = 1 def summ(num): if num == 0: return 0 else: return num + summ(num-1) def summ(num): if num == 0: return 0 else: return num + summ(num-1) num: 4 STACK num: 1 summ(1) num = 3 summ(2) def summ(num): if num == 0: return 0 else: return num + summ(num-1) summ(3) num: 3 summ(4) main()

STACK def summ(num): main() if num == 0: return 0 else: return num + summ(num-1) num: 2 def main(): summ(4) num = 2 num = 4 num = 1 def summ(num): if num == 0: return 0 else: return num + summ(num-1) def summ(num): if num == 0: return 0 else: return num + summ(num-1) num: 4 STACK summ(0) num: 1 summ(1) num = 3 summ(2) def summ(num): if num == 0: return 0 else: return num + summ(num-1) num = 0 summ(3) num: 3 def summ(num): if num == 0: return 0 else: return num + summ(num-1) summ(4) main() num: 0

STACK def summ(num): main() if num == 0: return 0 else: return num + summ(num-1) num: 2 def main(): summ(4) num = 2 num = 4 num = 1 def summ(num): if num == 0: return 0 else: return num + summ(num-1) def summ(num): if num == 0: return 0 else: return num + summ(num-1) num: 4 STACK summ(0) num: 1 summ(1) num = 3 summ(2) def summ(num): if num == 0: return 0 else: return num + summ(num-1) num = 0 summ(3) num: 3 def summ(num): if num == 0: return 0 else: return num + summ(num-1) summ(4) main() num: 0

STACK return 0 main() def summ(num): if num == 0: return 0 else: return num + summ(num-1) num: 2 def main(): summ(4) num = 2 num = 4 num = 1 def summ(num): if num == 0: return 0 else: return num + summ(num-1) def summ(num): if num == 0: return 0 else: return num + summ(num-1) num: 4 STACK summ(0) POP! num: 1 summ(1) num = 3 summ(2) def summ(num): if num == 0: return 0 else: return num + summ(num-1) return 0 num = 0 summ(3) num: 3 def summ(num): if num == 0: return 0 else: return num + summ(num-1) summ(4) main() num: 0 return 0

STACK return 1 + 0 (= 1) main() def summ(num): if num == 0: return 0 else: return num + summ(num-1) num: 2 def main(): summ(4) num = 2 num = 4 num = 1 def summ(num): if num == 0: return 0 else: return num + summ(num-1) return 1 def summ(num): if num == 0: return 0 else: return num + summ(num-1) num: 4 STACK POP! num: 1 summ(1) POP! num = 3 summ(2) def summ(num): if num == 0: return 0 else: return num + summ(num-1) summ(3) num: 3 summ(4) main() return 1 + 0 (= 1)

STACK return 2 + 1 (= 3) main() def summ(num): if num == 0: return 0 else: return num + summ(num-1) num: 2 def main(): summ(4) num = 2 num = 4 def summ(num): if num == 0: return 0 else: return num + summ(num-1) num: 4 STACK POP! POP! return 3 num = 3 summ(2) POP! def summ(num): if num == 0: return 0 else: return num + summ(num-1) summ(3) num: 3 summ(4) main() return 2 + 1 (= 3)

STACK return 3 + 3 (= 6) main() def main(): summ(4) def summ(num): if num == 0: return 0 else: return num + summ(num-1) num: 4 STACK POP! POP! num = 3 POP! def summ(num): if num == 0: return 0 else: return num + summ(num-1) return 6 summ(3) POP! num: 3 summ(4) main() return 3 + 3 (= 6)

STACK return 4 + 6 (=10) main() def main(): summ(4) def summ(num): if num == 0: return 0 else: return num + summ(num-1) num: 4 STACK POP! POP! POP! POP! summ(4) POP! main() return 4 + 6 (=10)

STACK return None main() def main(): summ(4) POP! POP! POP! POP! POP!

STACK POP! POP! The stack is empty! POP! POP! POP! POP! return control

Returning and Recursion

Returning Values If your goal is to return a final value Every recursive call must return a value You must be able to pass it “back up” to main() In most cases, the base case should return as well Must pay attention to what happens at the “end” of a function.

Does this work? What’s wrong? main() def summ(num): if num == 0: return 0 else: num + summ(num-1) def main(): summ(4) num = 2 num: 2 num = 4 num = 1 def summ(num): if num == 0: return 0 else: num + summ(num-1) def summ(num): if num == 0: return 0 else: num + summ(num-1) num: 4 STACK summ(0) num: 1 summ(1) num = 3 summ(2) def summ(num): if num == 0: return 0 else: num + summ(num-1) num = 0 summ(3) num: 3 def summ(num): if num == 0: return 0 else: num + summ(num-1) summ(4) main() num: 0 Does this work? What’s wrong?

Hailstone Example

comic courtesy of xkcd.com The Hailstone Problem comic courtesy of xkcd.com Included as part of the “Nested and While Loops” homework assignment The problem is actually known as the “Collatz Conjecture”

Rules of the Collatz Conjecture Three rules to govern how it behaves If the current height is 1, quit the program If the current height is even, cut it in half (divide by 2) If the current height is odd, multiply it by 3, then add 1 This process has also been called HOTPO Half Or Triple Plus One

Implementation In your homework, you implemented this process using a while loop Can you think of another way to implement it? Recursively!

Designing our Recursive Function What is our base case? When the Height is 1 What is our recursive case? We have two! What are they? Height is even: divide by 2 Height is odd: multiply by 3 and add 1

Exercise Create a function hail() that takes in a number and prints out the height of the hailstone at each point in time Important considerations: What do we check first? Base or recursive case? Is this function returning anything? Why or why not?

Exercise Details Rules for function behavior If the current height is 1, quit the program If the current height is even, cut it in half (divide by 2) If the current height is odd, multiply it by 3, then add 1 Create a function hail() that Takes in a number Prints out the height of the hailstone each time

Binary Search

Searching Given a list of sorted elements (e.g., words), find a specific word as quickly as possible We could start from the beginning and iterate through the list until we find it But that could take a long time!

Binary Search Uses a “divide and conquer” approach Go to the middle, and compare the element there to the one we’re looking for If it’s larger, we know it’s not in the last half If it’s smaller, we know it’s not in the first half If it’s the same, we found it!

Binary Search Example Find "J" A B C D E F G H I J K L M N O P Q R S T 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 A B C D E F G H I J K L M N O P Q R S T U V W X

Binary Search Example Find “V" A B C D E F G H I J K L M N O P Q R S T 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 A B C D E F G H I J K L M N O P Q R S T U V W X

Binary Search Can be implemented using a while loop But much more common to use recursion What is the base case? What is the recursive case?

Recursion vs Iteration

Recursion and Iteration Both are important All modern programming languages support them Some problems are easy using one and difficult using the other How do you decide which to use?

Use Iteration When… Speed and efficiency is an issue The problem is an obvious fit for iteration Processing every element of a list (or 2D list)

Use Recursion When… Speed is not an issue The data being processed is recursive A hierarchical data structure A recursive algorithm is obvious Clarity and simplicity of code is important

Fibonacci Sequences

Fibonacci Sequence Number series Starts with 0 or 1 Next number is found by adding the previous two numbers together Pattern is repeated over and over (and over…)

Fibonacci Sequence Starts with 0, 1, 1 Next number is …? 1 1 2 3 5 8 1 1 2 3 5 8 13 21 34 55 89 144 233 377 610 987 …

Recursively Implement Fibonacci The formula for a number in the sequence: F(n) = F(n-1) + F(n-2) What is our base case? What is our recursive case? How would we code this up?

Any Other Questions?

Announcements Lab is back in session this week! Project 1 is out Lab 11 is on classes Project 1 is out Due by Tuesday, November 17th at 8:59:59 PM Do NOT procrastinate! Next Class: Dictionaries