Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

It have to be a c++ code.In this assignment, you have to develop a puzzle solver using the DFS algorithm. User will insert some values

It have to be a c++ code.In this assignment, you have to develop a puzzle solver using the DFS algorithm. User will insert some values from 1 to 8 (including 0 and consider it to be an empty space) in a random order. Your puzzle solver will move a tile in each step and will lead to the goal state. See the image for the goal state. In your program, you have to print the following:
1. Each board state
2. Number of moves required to reach the goal state
3. Time taken to solve the puzzle.
Sample input:
1 2 3
8 0 4
7 6 5
Sample output:
Initial state:
1 2 3
8 0 4
7 6 5
Step 1:
1 3 4
8 2 0
7 6 5
step 2:
1 3 0
8 2 4
7 6 5
step 3:
1 0 3
8 2 4
7 6 5
step 4:
1 2 3
8 0 4
7 6 5
Time taken: 1.13ms
Marking scheme:
1. use of a structure to create the nodes.
2. Use a linked list to design a stack.
3. Use a class.
4. Proper use of DFS algorithm (your program should follow the basic principles of the DFS algorithm).
//Plz dont give any java idea thanks.

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image_2

Step: 3

blur-text-image_3

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Fundamentals Of Database Systems

Authors: Ramez Elmasri, Shamkant B. Navathe

7th Edition Global Edition

1292097612, 978-1292097619

More Books

Students also viewed these Databases questions

Question

Write the Lewis structure of CH 2 CCH 2 .

Answered: 1 week ago

Question

1. Which is the most abundant gas presented in the atmosphere?

Answered: 1 week ago