James Tam Recursion You will learn the definition of recursion as well as seeing how simple recursive programs work.

Slides:



Advertisements
Similar presentations
Fundamentals of Computer Science Lecture 14: Recursion Instructor: Evan Korth New York University.
Advertisements

James Tam Recursion You will learn what is recursion as well as how simple recursive programs work.
Computer Science II Recursion Professor: Evan Korth New York University.
Fundamentals of Computer Science Lecture 14: Recursion Instructor: Evan Korth New York University.
1 Recursion  Recursion is a fundamental programming technique that can provide an elegant solution certain kinds of problems  Chapter 11 of the book.
James Tam Recursion You will learn the definition of recursion as well as seeing how simple recursive programs work.
Recursion Road Map Introduction to Recursion Recursion Example #1: World’s Simplest Recursion Program Visualizing Recursion –Using Stacks Recursion Example.
Chapter 10 Recursion. Copyright © 2005 Pearson Addison-Wesley. All rights reserved Chapter Objectives Explain the underlying concepts of recursion.
James Tam Recursion You will learn what recursion is as well as how simple recursive programs work.
James Tam Recursion You will learn what is recursion as well as how simple recursive programs work.
James Tam Recursion You will learn what is recursion as well as how and when to use it in your programs.
James Tam Recursion You will learn what is recursion as well as how simple recursive programs work.
ELC 310 Day 24. © 2004 Pearson Addison-Wesley. All rights reserved11-2 Agenda Questions? Problem set 5 Parts A Corrected  Good results Problem set 5.
Discrete Mathematics Recursion and Sequences
Recursion Chapter 7. Chapter 7: Recursion2 Chapter Objectives To understand how to think recursively To learn how to trace a recursive method To learn.
Recursion You will learn the definition of recursion as well as seeing how simple recursive programs work.
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.
J. Michael Moore Recursion CSCE 110 From James Tam’s material.
Chapter 11 Recursion. © 2004 Pearson Addison-Wesley. All rights reserved11-2 Recursion Recursion is a fundamental programming technique that can provide.
Recursion Chapter 7 Copyright ©2012 by Pearson Education, Inc. All rights reserved.
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 9: Recursion1 CHAPTER 9 RECURSION. Recursion  Concept of recursion  A recursive: Benefit and Cost  Comparison : Iterative and recursive functions.
CHAPTER 02 Recursion Compiled by: Dr. Mohammad Omar Alhawarat.
Lecture 10 Recursion CSE225: Data Structures. 2 A Look Back at Functions #include double distance(double x1, double y1, double x2, double y2) { double.
Recursion. Recursive Methods HAVE: 1.A base case or termination condition that causes the method to end 2.A non-base case whose actions move the algorithm.
Copyright © 2009 Pearson Education, Inc. Publishing as Pearson Addison-Wesley Java Software Solutions Foundations of Program Design Sixth Edition by Lewis.
CS212: DATASTRUCTURES Lecture 3: Recursion 1. Lecture Contents 2  The Concept of Recursion  Why recursion?  Factorial – A case study  Content of a.
Chapter 8 Recursion Modified.
CSE 501N Fall ‘09 12: Recursion and Recursive Algorithms 8 October 2009 Nick Leidenfrost.
11-1 Recursive Thinking A recursive definition is one which uses the word or concept being defined in the definition itself When defining an English word,
Dale Roberts CSCI N305 Functions Recursion Department of Computer and Information Science, School of Science, IUPUI.
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.
IB Computer Science Unit 5 – Advanced Topics Recursion.
1 Program Planning and Design Important stages before actual program is written.
© 2011 Pearson Education, publishing as Addison-Wesley Chapter 8: Recursion Presentation slides for Java Software Solutions for AP* Computer Science 3rd.
1 Lecture 3 Part 2 Storage Classes, Scope, and Recursion.
© Janice Regan, CMPT 128, February CMPT 128: Introduction to Computing Science for Engineering Students Recursion.
Recursion A recursive definition is one which uses the word or concept being defined in the definition itself Example: “A computer is a machine.
Chapter 15: Recursion. Recursive Definitions Recursion: solving a problem by reducing it to smaller versions of itself – Provides a powerful way to solve.
Visual C++ Programming: Concepts and Projects Chapter 10A: Recursion (Concepts)
CS 116 Object Oriented Programming II Lecture 13 Acknowledgement: Contains materials provided by George Koutsogiannakis and Matt Bauer.
Recursion Chapter 7 Copyright ©2012 by Pearson Education, Inc. All rights reserved.
Recursion ITFN The Stack. A data structure maintained by each program at runtime. Push Pop.
Welcome to Recursion! Say what?!? Recursion is… the process of solving large problems by simplifying them into smaller ones. similar to processing using.
James Tam Recursion You will learn the definition of recursion as well as seeing how simple recursive programs work.
CMSC201 Computer Science I for Majors Lecture 19 – Recursion (Continued) Prof. Katherine Gibson Prof. Jeremy Dixon Based on slides from UPenn’s.
Recursion Topic 5.
CMSC201 Computer Science I for Majors Lecture 20 – Recursion (Continued) Prof. Katherine Gibson Based on slides from UPenn’s CIS 110, and from previous.
Introduction to Recursion
Introduction to Recursion
Abdulmotaleb El Saddik University of Ottawa
Recursion You will learn the definition of recursion as well as seeing how simple recursive programs work Recursion in Pascal 1.
Java 4/4/2017 Recursion.
Topic:- ALGORITHM Incharge Faculty – Lokesh Sir.
Chapter 8: Recursion Java Software Solutions
Recursion You will learn what recursion is as well as how simple recursive programs work Recursion in Pascal.
Recursion You will learn the definition of recursion as well as seeing how simple recursive programs work Recursion in Pascal 1.
Chapter 8: Recursion Java Software Solutions
Recursion You will learn what is recursion as well as how and when to use it in your programs.
Chapter 11 Recursion.
Chapter 8: Recursion Java Software Solutions
11 Recursion Software Solutions Lewis & Loftus java 5TH EDITION
Computer Science 2 Take out a piece of paper for the following dry runs. Label It Recursive Dry Runs 4/12/2018. It will be turned in when completed
Last Class We Covered Recursion Stacks Parts of a recursive function:
Computer Science
Chapter 3 :Recursion © 2011 Pearson Addison-Wesley. All rights reserved.
Java Software Solutions Foundations of Program Design Sixth Edition
Chapter 5 Recursion.
Presentation transcript:

James Tam Recursion You will learn the definition of recursion as well as seeing how simple recursive programs work

James Tam What Is Recursion? “the determination of a succession of elements by operation on one or more preceding elements according to a rule or formula involving a finite number of steps” (Merriam-Webster online)

James Tam What This Really Means Breaking a problem down into a series of steps. The final step is reached when some basic condition is satisfied. The solution for each step is used to solve the previous step. The solution for all the steps together form the solution to the whole problem. (The “Tam” translation)

James Tam Definition For Philosophy “…state of mind of the wise man; practical wisdom…” 1 See Metaphysics 1 The New Webster Encyclopedic Dictionary of the English Language

James Tam Metaphysics “…know the ultimate grounds of being or what it is that really exists, embracing both psychology and ontology. ” 2 2 The New Webster Encyclopedic Dictionary of the English Language

James Tam Result Of Lookup, Possibility One: Success I know what Ontology means!

James Tam Result Of Lookup, Possibility One Philosophy? Metaphysics? Ontology! Success! I’ll take a Philosophy option.

James Tam Result Of Lookup, Possibility Two: Failure Lookups loop back.

James Tam Result Of Lookup, Possibility Two Philosophy? Metaphysics? Ontology? Rats!!! See previous

James Tam Ontology “…equivalent to metaphysics.” 3 3 The New Webster Encyclopedic Dictionary of the English Language Wav file from “The Simpsons”

James Tam Result Of Lookup, Possibility Three: Failure You’ve looked up everything and still don’t know the definition!

James Tam Looking Up A Word if (you completely understand a definition) then return to previous definition (using the definition that’s understood) else lookup (unknown word(s))

James Tam Recursion: Can Be Used To Produce Graphics Images from Produce a picture by repeating a pattern

James Tam Recursion: Can Be Used To Produce Graphics (2)

James Tam Recursion In Programming “A programming technique whereby a function calls itself either directly or indirectly.”

James Tam Direct Call function def fun (): : fun () :

James Tam Indirect Call f1f1 f2f2

James Tam Indirect Call f1f1 f2f2 f3f3 … fnfn

James Tam Indirect Call (2) The name of the online example is: recursion1.py 1 def fun1 (): fun2 () def fun2 (): fun1 () 1 This program nominally fulfills the requirements for recursion but it contains an error.

James Tam Requirements For Sensible Recursion 1) Base case 2) Progress is made (towards the base case) The name of the corresponding online example is: sumSeries.py

James Tam sum (2) if (2 == 1) return 1 sum (3) if (3 == 1) return 1 Example Program def sum (no): if (no == 1): return 1 else: return (no + sum(no-1) ) def main (): lastNumber = input ("Enter the last number in the series: ") total = sum (lastNumber) print "The sum of the series from 1 to", lastNumber, "is", total main () sumSeries total = sum(3) F else return (3 + sum (3 – 1)) F else return (2 +sum (2 – 1)); sum (1) if (1 == 1) return 1 T 1 3 6

James Tam When To Use Recursion When a problem can be divided into steps. The result of one step can be used in a previous step. -There is a scenario when you can stop sub-dividing the problem into steps (recursive calls) and return to previous steps. The solution for a later step solves an early step. All of the results together solve the problem.

James Tam When To Consider Alternatives To Recursion When a loop will solve the problem just as well -Recursion is used when a loop cannot: There is a scenario when you can stop sub-dividing the problem into steps (recursive calls) and return to previous steps. The solution for a later step solves an early step. Types of recursion: -Tail recursion A recursive call is the last statement in the recursive function. This form of recursion can easily be replaced with a loop. -Non-tail recursion A statement which is not a recursive call to the function comprises the last statement in the recursive module. This form of recursion is very difficult (read: impossible) to replace with a loop.

James Tam Drawbacks Of Recursion Function calls can be costly -Uses up memory -Uses up time

James Tam Benefits Of Using Recursion Simpler solution that’s more elegant (for some problems) Easier to visualize solutions (for some people and certain classes of problems – typically require either: non-tail recursion to be implemented or some form of “backtracking”) Example: finding the path out of a maze. Maze Exit path

James Tam Common Pitfalls When Using Recursion These three pitfalls can result in a runtime error -No base case -No progress towards the base case -Using up too many resources (e.g., variable declarations) for each function call

James Tam No Base Case def sum (no): return (no + sum (no - 1))

James Tam No Base Case def sum (no): return (no + sum (no - 1)) When does it stop???

James Tam No Progress Towards The Base Case def sum (no): if (no == 1): return 1 else: return (no + sum (no))

James Tam No Progress Towards The Base Case def sum (no): if (no == 1): return 1 else: return (no + sum (no)) The recursive case doesn’t make any progress towards the base (stopping) case

James Tam Using Up Too Many Resources The name of the online example is: recursion2.py def fun (no): print no aList = [] for i in range (0, , 1): aList.append("*") no = no + 1 fun (no)

James Tam Undergraduate Definition Of Recursion Word: re·cur·sion Pronunciation: ri-'k&r-zh&n Definition: See recursion Wav file from “The Simpsons”

James Tam You Should Now Know What is a recursive computer program How to write and trace simple recursive programs What are the requirements for recursion/What are the common pitfalls of recursion