Chapter 5 Recursion as a Problem-Solving Technique.

Slides:



Advertisements
Similar presentations
COSC2007 Data Structures II
Advertisements

COSC 2006 Chapter 7 Stacks III
Recursion B.Ramamurthy Chapter 4. Ramamurthy Introduction  Recursion is one of most powerful methods of solution available to computer scientists. 
Chapter 6 Stacks. © 2005 Pearson Addison-Wesley. All rights reserved6-2 ADT Stack Figure 6.1 Stack of cafeteria dishes A stack –Last-in, first-out (LIFO)
CMPT 225 Stacks-part2.
Kavita Math231 Recursion and Iteration. Kavita Math231 We use Recursion when we have to perform a complex task that can be broken into the several subtasks.
CS102 Algorithms and Programming II1 Recursion Recursion is a technique that solves a problem by solving a smaller problem of the same type. A recursive.
© 2006 Pearson Addison-Wesley. All rights reserved7 B-1 Chapter 7 (continued) Stacks.
© 2006 Pearson Addison-Wesley. All rights reserved7A-1 Chapter 7 Stacks.
Chapter 2 Recursion: The Mirrors. © 2005 Pearson Addison-Wesley. All rights reserved2-2 Recursive Solutions Recursion is an extremely powerful problem-solving.
© 2006 Pearson Addison-Wesley. All rights reserved6-1 Chapter 6 Recursion as a Problem- Solving Technique.
Chapter 6 Stacks. © 2005 Pearson Addison-Wesley. All rights reserved6-2 ADT Stack Figure 6.1 Stack of cafeteria dishes A stack –Last-in, first-out (LIFO)
© 2006 Pearson Addison-Wesley. All rights reserved6-1 More on Recursion.
Chapter 10 Recursion. Copyright © 2005 Pearson Addison-Wesley. All rights reserved Chapter Objectives Explain the underlying concepts of recursion.
Section 5.2 Defining Languages. © 2005 Pearson Addison-Wesley. All rights reserved5-2 Defining Languages A language –A set of strings of symbols –Examples:
1 CSCD 326 Data Structures I Infix Expressions. 2 Infix Expressions Binary operators appear between operands: W - X / Y - Z Order of evaluation is determined.
Chapter 6 Stacks. © 2005 Pearson Addison-Wesley. All rights reserved6-2 The Abstract Data Type Specifications of an abstract data type for a particular.
Recursion. Recursive Solutions Recursion breaks a problem into smaller identical problems – mirror images so to speak. By continuing to do this, eventually.
© 2006 Pearson Addison-Wesley. All rights reserved3-1 Chapter 3 Recursion: The Mirrors.
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 Chapter 7. Chapter 7: Recursion2 Chapter Objectives To understand how to think recursively To learn how to trace a recursive method To learn.
Unit 7 1 Unit 7: Recursion H Recursion is a fundamental programming technique that can provide an elegant solution to a certain kinds of problems H In.
Chapter 2 Recursion: The Mirrors. © 2005 Pearson Addison-Wesley. All rights reserved2-2 Recursive Solutions Recursion is an extremely powerful problem-
1 Applications of Recursion (Walls & Mirrors - Chapter 5)
Data Structures Using C++ 2E Chapter 6 Recursion.
© 2006 Pearson Addison-Wesley. All rights reserved7A-1 Chapter 7 Stacks (and a bit of generics for flavor)
Data Structures Using C++ 2E Chapter 6 Recursion.
© 2006 Pearson Addison-Wesley. All rights reserved 3-1 Chapter 3 Recursion: The Mirrors.
Chapter 2 Recursion: The Mirrors. © 2005 Pearson Addison-Wesley. All rights reserved2-2 Recursive Solutions Recursion is an extremely powerful problem-
Chapter 3 Recursion: The Mirrors. © 2004 Pearson Addison-Wesley. All rights reserved 3-2 Recursive Solutions Recursion –An extremely powerful problem-solving.
Computer Science Department Data Structure & Algorithms Problem Solving with Stack.
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.
Data Structures and Abstractions with Java, 4e Frank Carrano
Ch. 7: Advanced Counting Techniques
COSC2007 Data Structures II
Copyright © 2007 Pearson Education, Inc. Publishing as Pearson Addison-Wesley. Ver Chapter 5: Recursion as a Problem-Solving Technique Data Abstraction.
Chapter 7 Stacks. © 2004 Pearson Addison-Wesley. All rights reserved 7-2 The Abstract Data Type: Developing an ADT During the Design of a Solution Specifications.
Copyright © 2007 Pearson Education, Inc. Publishing as Pearson Addison-Wesley. Ver Chapter 2: Recursion: The Mirrors.
Recursion as a Problem- Solving Technique Chapter 5 Data Structures and Problem Solving with C++: Walls and Mirrors, Carrano and Henry, © 2013.
CSC 205 Programming II Lecture 18 The Eight Queens Problem.
Data Structures Using C++ 2E1 Recursion and Backtracking: DFS Depth first search (a way to traverse a tree or graph) Backtracking can be regarded as a.
EXAMPLES OF RECURSION Towers of Hanoi Writing Linked Lists Backwards Recursive Insert 8 Queens Recognizing Simple Languages Prefix Expressions Conversion.
Copyright © 2007 Pearson Education, Inc. Publishing as Pearson Addison-Wesley. Ver Chapter 5: Recursion as a Problem-Solving Technique Data Abstraction.
Recursion as a Problem-Solving Technique. What is recursion? There are two types of recursive functions: Direct and Indirect Explain… There are two basic.
Chapter 6 B Stacks. © 2004 Pearson Addison-Wesley. All rights reserved6 B-2 Comparing Implementations All of the three implementations are ultimately.
CMPT 225 Recursion. Objectives Understand how the Fibonacci series is generated Recursive Algorithms  Write simple recursive algorithms  Analyze simple.
Chapter 2 Recursion: The Mirrors. © 2005 Pearson Addison-Wesley. All rights reserved2-2 Recursive Solutions Recursion is an extremely powerful problem-solving.
1 Recursion Recursion is a powerful programming technique that provides elegant solutions to certain problems. Chapter 11 focuses on explaining the underlying.
Recursion as a Problem- Solving Technique Chapter 5 Data Structures and Problem Solving with C++: Walls and Mirrors, Carrano and Henry, © 2013.
© 2006 Pearson Addison-Wesley. All rights reserved 6-1 Chapter 6 Recursion as a Problem- Solving Technique.
Discrete Mathematics Lecture # 22 Recursion.  First of all instead of giving the definition of Recursion we give you an example, you already know the.
Review of Recursion  a recursive method calls itself  to prevent infinite recursion you need to ensure that: 1. the method reaches a base case 2. each.
1 In this puzzle, the player begins with n disks of decreasing diameter placed one on top of the other on one of three pegs of the game board. The player.
Chapter 2 Recursion: The Mirrors. © 2005 Pearson Addison-Wesley. All rights reserved2-2 Recursive Solutions Recursion is an extremely powerful problem-solving.
 Chapter 7 introduces the stack data type.  Several example applications of stacks are given in that chapter.  This presentation shows another use called.
CS Data Structures Chapter 6 Stacks Mehmet H Gunes
Stacks Chapter 6.
Chapter 5 Recursion as a Problem-Solving Technique
Principles of Programming and Software Engineering
Copyright ©2012 by Pearson Education, Inc. All rights reserved
Java Software Structures: John Lewis & Joseph Chase
Chapter 6 Stacks.
Stacks Chapter 5 Adapted from Pearson Education, Inc.
Ch. 6 Recursion as a Problem Solving Technique
B.Ramamurthy Chapter 9 CSE116A,B
Recursion as a Problem-Solving Technique
Chapter 3 :Recursion © 2011 Pearson Addison-Wesley. All rights reserved.
Chapters 6 and 7 Stacks.
Chapter 7 (continued) © 2011 Pearson Addison-Wesley. All rights reserved.
Recursion: The Mirrors
Presentation transcript:

Chapter 5 Recursion as a Problem-Solving Technique

© 2005 Pearson Addison-Wesley. All rights reserved5-2 Backtracking –A strategy for guessing at a solution and backing up when an impasse is reached Recursion and backtracking can be combined to solve problems Eight-Queens Problem –Place eight queens on the chessboard so that no queen can attack any other queen

© 2005 Pearson Addison-Wesley. All rights reserved5-3 The Eight Queens Problem One strategy: guess at a solution –There are 4,426,165,368 ways to arrange 8 queens on a chessboard of 64 squares An observation that eliminates many arrangements from consideration –No queen can reside in a row or a column that contains another queen Now: only 40,320 (8!) arrangements of queens to be checked for attacks along diagonals

© 2005 Pearson Addison-Wesley. All rights reserved5-4 The Eight Queens Problem Providing organization for the guessing strategy –Place queens one column at a time –If you reach an impasse, backtrack to the previous column Figure 5.2 A solution to the Eight Queens problem

© 2005 Pearson Addison-Wesley. All rights reserved5-5 The Eight Queens Problem A recursive algorithm that places a queen in a column –Base case If there are no more columns to consider –You are finished –Recursive step If you successfully place a queen in the current column –Consider the next column If you cannot place a queen in the current column –You need to backtrack

© 2005 Pearson Addison-Wesley. All rights reserved5-6 The Eight Queens Problem Figure 5.1 a) Five queens that cannot attack each other, but that can attack all of column 6; b) backtracking to column 5 to try another square for the queen; c) backtracking to column 4 to try another square for the queen and then considering column 5 again

© 2005 Pearson Addison-Wesley. All rights reserved5-7 Implementing Eight Queens Using the STL Class vector A Board object represents the chessboard –Contains a vector of pointers to Queen objects on the board –Includes operations to perform the Eight Queens problem and display the solution A Queen object represents a queen on the board –Keeps track of its row and column placement –Contains a static pointer to the Board

© 2005 Pearson Addison-Wesley. All rights reserved5-8 Defining Languages A language –A set of strings of symbols –Examples: English, C++ –If a C++ program is one long string of characters, the language C++Programs is defined as C++Programs = {strings w : w is a syntactically correct C++ program}

© 2005 Pearson Addison-Wesley. All rights reserved5-9 Defining Languages A language does not have to be a programming or a communication language –Example: AlgebraicExpressions = {w : w is an algebraic expression} –The grammar defines the rules for forming the strings in a language A recognition algorithm determines whether a given string is in the language –A recognition algorithm for a language is written more easily with a recursive grammar

© 2005 Pearson Addison-Wesley. All rights reserved5-10 The Basics of Grammars Symbols used in grammars –x | y means x or y –x y means x followed by y –In x y, the symbol means concatenate, or append – means any instance of word that the definition defines

© 2005 Pearson Addison-Wesley. All rights reserved5-11 C++ Identifiers A C++ identifier begins with a letter and is followed by zero or more letters and digits Language C++Ids = {w : w is a legal C++ identifier} Grammar = | | = a | b | … | z | A | B | …| Z | _ | $ = 0 | 1 | … | 9

© 2005 Pearson Addison-Wesley. All rights reserved5-12 C++ Identifiers Recognition algorithm isId(in w:string): boolean if (w is of length 1) if (w is a letter) return true else return false else if (the last character of w is a letter or a digit) return isId(w minus its last character) else return false

© 2005 Pearson Addison-Wesley. All rights reserved5-13 Palindromes A string that reads the same from left to right as it does from right to left Language Palindromes = {w : w reads the same left to right as right to left} Grammar = empty string | | a a | b b | …| Z Z = a | b | … | z | A | B | … | Z

© 2005 Pearson Addison-Wesley. All rights reserved5-14 Palindromes Recognition algorithm isPal(in w:string):boolean if (w is the empty string or w is of length 1) return true else if (w’s first and last characters are the same letter ) return isPal(w minus its first and last characters) else return false

© 2005 Pearson Addison-Wesley. All rights reserved5-15 Strings of the Form A n B n A n B n –The string that consists of n consecutive A’s followed by n consecutive B’s Language L = {w : w is of the form A n B n for some n ≥ 0} Grammar = empty string | A B

© 2005 Pearson Addison-Wesley. All rights reserved5-16 Strings of the form A n B n Recognition algorithm isAnBn(in w:string):boolean if (the length of w is zero) return true else if (w begins with the character A and ends with the character B) return isAnBn(w minus its first and last characters) else return false

© 2005 Pearson Addison-Wesley. All rights reserved5-17 Algebraic Expressions Infix expressions –An operator appears between its operands Example: a + b Prefix expressions –An operator appears before its operands Example: + a b Postfix expressions –An operator appears after its operands Example: a b +

© 2005 Pearson Addison-Wesley. All rights reserved5-18 Algebraic Expressions To convert a fully parenthesized infix expression to a prefix form –Move each operator to the position marked by its corresponding open parenthesis –Remove the parentheses –Example Infix expression: ((a + b) * c Prefix expression: * + a b c

© 2005 Pearson Addison-Wesley. All rights reserved5-19 Algebraic Expressions To convert a fully parenthesized infix expression to a postfix form –Move each operator to the position marked by its corresponding closing parenthesis –Remove the parentheses –Example Infix form: ((a + b) * c) Postfix form: a b + c *

© 2005 Pearson Addison-Wesley. All rights reserved5-20 Algebraic Expressions Prefix and postfix expressions –Never need Precedence rules Association rules Parentheses – Have Simple grammar expressions Straightforward recognition and evaluation algorithms

© 2005 Pearson Addison-Wesley. All rights reserved5-21 Prefix Expressions Grammar = | = + | - | * | / = a | b | … | z A recognition algorithm isPre():boolean lastChar = endPre(0) // returns the end return (lastChar >=0 and lastChar == strExp.length() -1)

© 2005 Pearson Addison-Wesley. All rights reserved5-22 Prefix Expressions An algorithm that evaluates a prefix expression evaluatePrefix(inout strExp:string):float ch = first character of expression strExp Delete first character from strExp if (ch is an identifier) return value of the identifier else if (ch is an operator named op) { operand1 = evaluatePrefix(strExp) operand2 = evaluatePrefix(strExp) return operand1 op operand2 }

© 2005 Pearson Addison-Wesley. All rights reserved5-23 Postfix Expressions Grammar = | = + | - | * | / = a | b | … | z The recursive case for prefix form to postfix form conversion postfix(exp)= postfix(prefix1) + postfix(prefix2) +

© 2005 Pearson Addison-Wesley. All rights reserved5-24 Postfix Expressions A recursive algorithm that converts a prefix expression to postfix form convert(inout pre:string, out post:string) ch = first character of pre Delete first character of pre if (ch is a lowercase letter) post = post + ch else { convert(pre, post) post = post + ch }

© 2005 Pearson Addison-Wesley. All rights reserved5-25 Fully Parenthesized Expressions Fully parenthesized expressions –Do not require precedence rules or rules for association –Are inconvenient for programmers Grammar = | ( ) = + | - | * | / = a | b | … | z

© 2005 Pearson Addison-Wesley. All rights reserved5-26 Recursion and Mathematical Induction Recursion and mathematical induction –Both use a base case to solve a problem –Both solve smaller problems of the same type to derive a solution Induction can be used to –Prove properties about recursive algorithms –Prove that a recursive algorithm performs a certain amount of work

© 2005 Pearson Addison-Wesley. All rights reserved5-27 The Correctness of the Recursive Factorial Function Pseudocode for the recursive factorial if (n is 0) return 1 else return n * fact(n – 1) Induction on n proves the return values: –fact(0) = 0! = 1 –fact(n) = n!= n*(n – 1)* (n – 2)*…* 1 if n > 0

© 2005 Pearson Addison-Wesley. All rights reserved5-28 The Cost of Towers of Hanoi Solution to the Towers of Hanoi problem solveTowers(count, source, destination, spare) if (count is 1) Move a disk directly from source to destination else { solveTowers(count-1, source, spare, destination) solveTowers(1, source, destination, spare) solveTowers(count-1, spare, destination, source) }

© 2005 Pearson Addison-Wesley. All rights reserved5-29 The Cost of Towers of Hanoi With N disks, how many moves does solveTowers make? Let moves(N) be the number of moves made starting with N disks When N = 1 –moves(1) = 1 When N > 1 –moves(N) = moves(N–1) + moves(1) + moves(N–1)

© 2005 Pearson Addison-Wesley. All rights reserved5-30 The Cost of Towers of Hanoi Recurrence relation for the number of moves that solveTowers requires for N disks –moves(1) = 1 –moves(N) = 2 * moves(N – 1) + 1 if N > 1

© 2005 Pearson Addison-Wesley. All rights reserved5-31 The Cost of Towers of Hanoi A closed-form formula is more satisfactory –You can substitute any given value for N and obtain the number of moves made –moves(N) = 2 N – 1, for all N ≥ 1 –Induction on N can provide the proof that moves(N) = 2 N – 1

© 2005 Pearson Addison-Wesley. All rights reserved5-32 Summary Backtracking is a solution strategy that involves both recursion and a sequence of guesses that ultimately lead to a solution A grammar is a device for defining a language –A language is a set of strings of symbols –A recognition algorithm for a language can often be based directly on the grammar of the language –Grammars are frequently recursive

© 2005 Pearson Addison-Wesley. All rights reserved5-33 Summary Different languages of algebraic expressions have their relative advantages and disadvantages –Prefix –Postfix –Infix Induction can be used to prove properties about a recursive algorithm