kruse/ryba ch051 object oriented data structures recursion introduction to recursion principles of...

32
Kruse/Ryba ch05 1 Object Oriented Data Structures Recursion Introduction to Recursion Principles of Recursion Backtracking: Postponing the Work Tree-Structured Programs: Look Ahead in Games

Upload: annabel-goodman

Post on 18-Jan-2018

276 views

Category:

Documents


0 download

DESCRIPTION

3 Stack Frames M A MA B M A M C A M D C A M C A M A M M D MD M D D M D D D M D D M M Time

TRANSCRIPT

Page 1: Kruse/Ryba ch051 Object Oriented Data Structures Recursion Introduction to Recursion Principles of Recursion Backtracking: Postponing the Work Tree-Structured

Kruse/Ryba ch05 1

Object Oriented Data Structures

RecursionIntroduction to RecursionPrinciples of Recursion

Backtracking: Postponing the WorkTree-Structured Programs: Look Ahead in Games

Page 2: Kruse/Ryba ch051 Object Oriented Data Structures Recursion Introduction to Recursion Principles of Recursion Backtracking: Postponing the Work Tree-Structured

Kruse/Ryba ch05 2

Page 3: Kruse/Ryba ch051 Object Oriented Data Structures Recursion Introduction to Recursion Principles of Recursion Backtracking: Postponing the Work Tree-Structured

Kruse/Ryba ch05 3

Stack Frames

MAM

AB

MAM

CAM

DCAM

CAM

AM M

DM

DM

DDM

DD

DM

DDM M

Time

Page 4: Kruse/Ryba ch051 Object Oriented Data Structures Recursion Introduction to Recursion Principles of Recursion Backtracking: Postponing the Work Tree-Structured

Kruse/Ryba ch05 4

Tree of Subprogram Calls

M

D

D

D

A

B C

Start Finish

Page 5: Kruse/Ryba ch051 Object Oriented Data Structures Recursion Introduction to Recursion Principles of Recursion Backtracking: Postponing the Work Tree-Structured

Kruse/Ryba ch05 5

Recursive Definitions

n! = 1 if n = 0

n*(n-1)! if n > 0

xn = 1 if n = 0 and x not 0

x*(xn-1) if n > 0 and x not 0

Page 6: Kruse/Ryba ch051 Object Oriented Data Structures Recursion Introduction to Recursion Principles of Recursion Backtracking: Postponing the Work Tree-Structured

Kruse/Ryba ch05 6

Designing Recursive Algorithms

Find the key stepFind a stopping rule (base case)Outline your algorithmCheck terminationDraw a recursion tree

Page 7: Kruse/Ryba ch051 Object Oriented Data Structures Recursion Introduction to Recursion Principles of Recursion Backtracking: Postponing the Work Tree-Structured

Kruse/Ryba ch05 7

Tail Recursion

The very last action of a function is a recursive call to itselfExplicit use of a stack not necessaryReassign the calling parameters to the values specified in the recursive call and then repeat the function

Page 8: Kruse/Ryba ch051 Object Oriented Data Structures Recursion Introduction to Recursion Principles of Recursion Backtracking: Postponing the Work Tree-Structured

Kruse/Ryba ch05 8

Backtracking

An algorithm which attempts to complete a search for a solution to a problem by constructing partial solutions, always ensuring that the partial solutions remain consistent with the requirements. The algorithm then attempts to extend a partial solution toward completion, but when an inconsistency with the requirements of the problem occurs, the algorithm backs up (backtracks) by removing the most recently constructed part of the solution and trying another possibility.

Page 9: Kruse/Ryba ch051 Object Oriented Data Structures Recursion Introduction to Recursion Principles of Recursion Backtracking: Postponing the Work Tree-Structured

Kruse/Ryba ch05

Knight's Tour

Legal Knight Moves

Page 10: Kruse/Ryba ch051 Object Oriented Data Structures Recursion Introduction to Recursion Principles of Recursion Backtracking: Postponing the Work Tree-Structured

Kruse/Ryba ch05

Knight's Tour

Legal Knight Moves

Page 11: Kruse/Ryba ch051 Object Oriented Data Structures Recursion Introduction to Recursion Principles of Recursion Backtracking: Postponing the Work Tree-Structured

Kruse/Ryba ch05

Knight's Tour

Legal Knight Moves

Page 12: Kruse/Ryba ch051 Object Oriented Data Structures Recursion Introduction to Recursion Principles of Recursion Backtracking: Postponing the Work Tree-Structured

Kruse/Ryba ch05

Knight's Tour

Legal Knight Moves

1 10 3164 33 26

53 6212

7 28

25

30

63

34 519 2 1

132 27 52 61 54

6 13

8 29

24 35 50 413 18 5 3

649 40 5560

14

21

16 23 46 5742 391720

415

1922

4845

3758

4447

5938

5643

Page 13: Kruse/Ryba ch051 Object Oriented Data Structures Recursion Introduction to Recursion Principles of Recursion Backtracking: Postponing the Work Tree-Structured

Kruse/Ryba ch05 13

Application: Depth- And Breadth-First Search

S

F

Page 14: Kruse/Ryba ch051 Object Oriented Data Structures Recursion Introduction to Recursion Principles of Recursion Backtracking: Postponing the Work Tree-Structured

Kruse/Ryba ch05 14

Hexadecimal Numbers

Hexadecimal – Base 16 numbering system 0-FDecimal - Base 10 numbering system 0-9Octal - Base 8 numbering system 0-7Hexadecimal Digits 0,1,2,3,4,5,6,7,8,9,A,B,C,D,E,FDecimal Digits 0,1,2,3,4,5,6,7,8,9Ocal Digits 0,1,2,3,4,5,6,7

What’s . ?

Page 15: Kruse/Ryba ch051 Object Oriented Data Structures Recursion Introduction to Recursion Principles of Recursion Backtracking: Postponing the Work Tree-Structured

Kruse/Ryba ch05 15

Hexadecimal Digit Values• 3210 Oct Dec Hex• 0000 0 0 0• 0001 1 1 1• 0010 2 2 2• 0011 3 3 3• 0100 4 4 4• 0101 5 5 5• 0110 6 6 6• 0111 7 7 7• 1000 10 8 8• 1001 11 9 9• 1010 12 10 A• 1011 13 11 B• 1100 14 12 C• 1101 15 13 D• 1110 16 14 E• 1111 17 15 F

3 2 1 023,22,21,20

8 4 2 1

Page 16: Kruse/Ryba ch051 Object Oriented Data Structures Recursion Introduction to Recursion Principles of Recursion Backtracking: Postponing the Work Tree-Structured

Kruse/Ryba ch05 16

Cell Description

0 1 2 3 4 5 6 7

8 9 10 11 12 13 14 15

0000 0001 0010 0011 0100 0101 0110 0111

1000 1001 1010 1011 1100 1101 1110 1111

Page 17: Kruse/Ryba ch051 Object Oriented Data Structures Recursion Introduction to Recursion Principles of Recursion Backtracking: Postponing the Work Tree-Structured

Kruse/Ryba ch05 17

Application: Depth- And Breadth-First Search

14

10

9

129

54

43

5 2

14

9

14

1

610

13 2

12 210

1 3 11

Page 18: Kruse/Ryba ch051 Object Oriented Data Structures Recursion Introduction to Recursion Principles of Recursion Backtracking: Postponing the Work Tree-Structured

Kruse/Ryba ch05 18

Class Cell Maintain:A number. This is an integer value used to identify the cell. Cells are numbered consecutively from left to right and top to bottom. (Order is important!)A list of neighboring cells. Each cell will have an entry in this list for all other neighbor cell that can be reached.A Boolean value, named visited, that will be used to mark a cell once it has been visited. Traversing a maze often results in dead ends, and the need to back up and start again. Marking cells avoids repeating effort and potentially walking around in circles.

Page 19: Kruse/Ryba ch051 Object Oriented Data Structures Recursion Introduction to Recursion Principles of Recursion Backtracking: Postponing the Work Tree-Structured

Kruse/Ryba ch05 19

Class Descriptionclass cell{ public: cell(int n) : number(n), visited(false) {} void addNeighbor(cell * n) {neighbors.push_back(n);} void visit (deque<cell *> &); protected: int number; bool visited; list <cell *> neighbors;};//end class cell

Page 20: Kruse/Ryba ch051 Object Oriented Data Structures Recursion Introduction to Recursion Principles of Recursion Backtracking: Postponing the Work Tree-Structured

Kruse/Ryba ch05 20

Class Mazeclass maze{ public: maze(istream &); void solveMaze(); protected: cell * start; bool finished; deque <cell *> path; // used to hold the path // or paths currently // being traversed};//end class maze

Page 21: Kruse/Ryba ch051 Object Oriented Data Structures Recursion Introduction to Recursion Principles of Recursion Backtracking: Postponing the Work Tree-Structured

Kruse/Ryba ch05 21

maze::maze(istream & infile) // initialize maze by reading from file{ int numRows, numColumns; int counter = 1; cell * current = 0; infile >> numRows >> numColumns; vector <cell *> previousRow (numRows, 0);

Page 22: Kruse/Ryba ch051 Object Oriented Data Structures Recursion Introduction to Recursion Principles of Recursion Backtracking: Postponing the Work Tree-Structured

Kruse/Ryba ch05 22

for(int i = 0; i < numRows; i++) for(int j=0; j<numColumns; j++) { current = new cell(counter++); int walls; infile >> walls; if((i>0) && ((walls & 0x04)==0)) { current->addNeighbor(previousRow[j]) previousRow[j]->addNeighbor(current); } if((j>0> && ((walls & 0x08) == 0)) { current->addNeighbor(previousRow[j-1]); previousRow[j-1]->addNeighbor(current); } previousRow[j] = current; } start = current; finished = false;}//end maze()

Page 23: Kruse/Ryba ch051 Object Oriented Data Structures Recursion Introduction to Recursion Principles of Recursion Backtracking: Postponing the Work Tree-Structured

Kruse/Ryba ch05 23

14109

129

54

43

5 2149

141

610

13 212 210

1 3 11previousRow[j]

1

previousRow[0] 1

3

previousRow[2] 3

2

3

4

previousRow[3] 4

2

previousRow[1] 2

5

previousRow[4] 5

3

4

4

5

Page 24: Kruse/Ryba ch051 Object Oriented Data Structures Recursion Introduction to Recursion Principles of Recursion Backtracking: Postponing the Work Tree-Structured

Kruse/Ryba ch05 24

14109

129

54

43

5 2149

141

610

13 212 210

1 3 11previousRow[j]

1

previousRow[0] 6

3

previousRow[2] 3

2

3

4

previousRow[3] 4

2

previousRow[1] 2

5

previousRow[4] 5

3

4

4

5

6 1

6

Page 25: Kruse/Ryba ch051 Object Oriented Data Structures Recursion Introduction to Recursion Principles of Recursion Backtracking: Postponing the Work Tree-Structured

Kruse/Ryba ch05 25

14109

129

54

43

5 2149

141

610

13 212 210

1 3 11previousRow[j]

1

previousRow[0] 6

3

previousRow[2] 3

2

3

4

previousRow[3] 4

2

previousRow[1] 7

5

previousRow[4] 5

3

4

4

5

6 1

7 2

7

6

Page 26: Kruse/Ryba ch051 Object Oriented Data Structures Recursion Introduction to Recursion Principles of Recursion Backtracking: Postponing the Work Tree-Structured

Kruse/Ryba ch05 26

void maze::solveMaze()

// solve the maze puzzle{ start->visit(path); while ((!finished) && (! path.empty ())) { cell * current = path.front(); path.pop_front(); finished = current->visit(path); } if ( ! finished) cout << “no solution found\n”;}//end solveMaze()

Page 27: Kruse/Ryba ch051 Object Oriented Data Structures Recursion Introduction to Recursion Principles of Recursion Backtracking: Postponing the Work Tree-Structured

Kruse/Ryba ch05 27

bool cell::visit(deque<cell *> & path) { //depth first if(visited) // already been here return false; visited = true; // mark as visited cout << “visiting cell “ << number << endl; if (number == 1) { cout << “puzzle solved\n”; return true; } list <cell *>:: iterator start, stop; start = neighbors.begin(); stop = neighbors.end(); for ( ; start != stop; ++start) if (! (*start)->visited) path.push_front(*start); return false;}

Page 28: Kruse/Ryba ch051 Object Oriented Data Structures Recursion Introduction to Recursion Principles of Recursion Backtracking: Postponing the Work Tree-Structured

Kruse/Ryba ch05 28

bool cell::visit(deque<cell *> & path) {// breadth first if(visited) // already been here return false; visited = true; // mark as visited cout << “visiting cell “ << number << endl; if (number == 1) { cout << “puzzle solved\n”; return true; } list <cell *>:: iterator start, stop; start = neighbors.begin(); stop = neighbors.end(); for ( ; start != stop; ++start) if (! (*start)->visited) path.push_back(*start); return false;}

Page 29: Kruse/Ryba ch051 Object Oriented Data Structures Recursion Introduction to Recursion Principles of Recursion Backtracking: Postponing the Work Tree-Structured

Kruse/Ryba ch05 29

Depth First vs. Breadth First

Because all paths of length one are investigated before examining paths of length two, and all paths of length two before examining paths of length three, a breadth-first search is guaranteed to always discover a path from start to goal containing the fewest steps, whenever such a path exists.

Page 30: Kruse/Ryba ch051 Object Oriented Data Structures Recursion Introduction to Recursion Principles of Recursion Backtracking: Postponing the Work Tree-Structured

Kruse/Ryba ch05 30

Depth First vs. Breadth First

Because one path is investigated before any alternatives are examined, a depth-first search may, if it is lucky, discover a solution more quickly than the equivalent breadth-first algorithm.

Page 31: Kruse/Ryba ch051 Object Oriented Data Structures Recursion Introduction to Recursion Principles of Recursion Backtracking: Postponing the Work Tree-Structured

Kruse/Ryba ch05 31

Depth First vs. Breadth FirstIn particular, suppose for a particular problem that some but not all paths are infinite, and at least one path exists from start to goal that is finite. A breadth-first search is guaranteed to find a shortest solution. A depth-first search may have the unfortunate luck to pursue a never-ending path, and can hence fail to find a solution.

Page 32: Kruse/Ryba ch051 Object Oriented Data Structures Recursion Introduction to Recursion Principles of Recursion Backtracking: Postponing the Work Tree-Structured

Kruse/Ryba ch05 32

Chapter 5 Ripples Away