Top Banner
Chapter Objectives To learn about recursive data structures and recursive methods for a LinkedList class To understand how to use recursion to solve the Towers of Hanoi problem To understand how to use recursion to process two-dimensional images To learn how to apply backtracking to solve search problems such as finding a path through a maze CS340 1
27

Chapter Objectives

Feb 24, 2016

Download

Documents

evita

Chapter Objectives. To learn about recursive data structures and recursive methods for a LinkedList class To understand how to use recursion to solve the Towers of Hanoi problem To understand how to use recursion to process two-dimensional images - PowerPoint PPT Presentation
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: Chapter Objectives

CS340 1

Chapter Objectives To learn about recursive data structures and recursive

methods for a LinkedList class To understand how to use recursion to solve the Towers

of Hanoi problem To understand how to use recursion to process two-

dimensional images To learn how to apply backtracking to solve search

problems such as finding a path through a maze

Page 2: Chapter Objectives

2

Recursive Data Structures

Click icon to add picture

CS340

Page 3: Chapter Objectives

CS340 3

Recursive Data Structures Data structures that are defined recursively – with

another version of itself as a component Linked lists and trees Recursive methods provide a natural mechanism for

processing recursive data structures

Page 4: Chapter Objectives

CS340 4

Recursive Definition of a Linked List• Each node of a linked list

• References another linked list• That references another linked list

• That references another linked list• That references another linked list• …• The last node references an empty list

Page 5: Chapter Objectives

CS340 5

Class LinkedListRecLinkedListRec<E> implements several list

operations using recursive methodspublic class LinkedListRec<E> { private Node<E> head; // inner class Node<E> here // (from chapter 2)}

Page 6: Chapter Objectives

CS340 6

Recursive size Method

Page 7: Chapter Objectives

CS340 7

Recursive toString Method

Page 8: Chapter Objectives

8

Recursive replace Method

Page 9: Chapter Objectives

9

Recursive add Method

Page 10: Chapter Objectives

CS340 10

Recursive remove Method

Page 11: Chapter Objectives

CS340 11

Recursive remove Method (cont.)

Page 12: Chapter Objectives

12

Problem Solving with Recursion

CS340

Page 13: Chapter Objectives

CS340 13

Simplified Towers of Hanoi• Move the three disks to a different peg, maintaining their

order (largest disk on bottom, smallest on top, etc.)• Only the top disk on a peg can be moved to another peg• A larger disk cannot be placed on top of a smaller disk

Page 14: Chapter Objectives

CS340 14

Towers of Hanoi

Page 15: Chapter Objectives

CS340 15

Algorithm for Towers of HanoiSolution to Two-Disk Problem: Move Three Disks from Peg L to Peg R

1. Move the top two disks from peg L to peg M.2. Move the bottom disk from peg L to peg R.3. Move the top two disks from peg M to peg R.

Page 16: Chapter Objectives

CS340 16

Algorithm for Towers of Hanoi (cont.)

Solution to Two-Disk Problem: Move Top Two Disks from Peg M to Peg R

1. Move the top disk from peg M to peg L.2. Move the bottom disk from peg M to peg R.3. Move the top disk from peg L to peg R.

Page 17: Chapter Objectives

CS340 17

Algorithm for Towers of Hanoi (cont.)

Solution to Four-Disk Problem: Move Four Disks from Peg L to Peg R

1. Move the top three disks from peg L to peg M.2. Move the bottom disk from peg L to peg R.3. Move the top three disks from peg M to peg R.

Page 18: Chapter Objectives

CS340 18

Recursive Algorithm for Towers of Hanoi

if n is 1 move disk 1 (the smallest disk) from the starting peg to the destination pegelse move the top n – 1 disks from the starting peg to the temporary peg (neither starting nor destination peg) move disk n (the disk at the bottom) from the starting peg to the destination peg move the top n – 1 disks from the temporary peg to the destination peg

Page 19: Chapter Objectives

CS340 19

Recursive pseudo code for towers of Hanoi problem

FUNCTION MoveTower(disk, source, dest, spare):IF disk == 0, THEN: move disk from source to destELSE: MoveTower(disk - 1, source, spare, dest) move disk from source to dest MoveTower(disk - 1, spare, dest, source) END IF

Page 20: Chapter Objectives

CS340 20

Recursive Algorithm for Towers of Hanoi (cont.)

Page 21: Chapter Objectives

21

Backtracking

CS340

Page 22: Chapter Objectives

CS340 22

Backtracking Implementing a systematic trial and error search for a

solution Ex. find a path through a maze

Backtracking is a systematic, nonrepetitive approach to trying alternative paths and eliminating them if they don’t work

Page 23: Chapter Objectives

CS340 23

Backtracking (cont.)Recursion allows you to implement backtracking

Each activation frame is used to remember the choice that was made at that particular decision point

Page 24: Chapter Objectives

CS340 24

Finding a Path through a Maze• Problem

• Use backtracking to find a display the path through a maze• From each point in a maze, you can move to the next cell in a

horizontal or vertical direction, if the cell is not blocked

Page 25: Chapter Objectives

CS340 25

Finding a Path through a Maze (cont.)

Analysis The maze will consist of a grid of colored cells The starting point is at the top left corner (0,0) The exit point is at the bottom right corner (getNCols() – 1, getNRow -1)

All cells on the path will be BACKGROUND color All cells that represent barriers will be ABNORMAL color Cells that we have visited will be TEMPORARY color If we find a path, all cells on the path will be set to PATH color

Page 26: Chapter Objectives

CS340 26

Recursive Algorithm for Finding Maze Path

if the current cell is outside the maze return false (you are out of bounds)else if the current cell is part of the barrier or has already been visited return false (you are off the path or in a cycle)else if the current cell is the maze exit recolor it to the path color and return true (you have successfully completed the maze)else // Try to find a path from the current path to the exit: mark the current cell as on the path by recoloring it to the path color for each neighbor of the current cell if a path exists from the neighbor to the maze exit return true // No neighbor of the current cell is on the path recolor the current cell to the temporary color (visited) and return false

Page 27: Chapter Objectives

CS340 27

Testing• Test for a variety of test cases:

• Mazes that can be solved• Mazes that can't be solved• A maze with no barrier cells• A maze with a single barrier cell at the exit point