8 Puzzle Solver

Project Description

This C program asks the user to input unique numbers from 0-8 in a 3x3 grid, that will serve as the input for the puzzle.
The user can choose between two search tree algorithms, either Iterative Depth Search (IDS) or A* Search to find the solution. The program will give the solution path, solution cost, number of nodes expanded, and the running time.