Skip to content

Klotski is a sliding puzzel game. Here is a example of applying BFS, DFS and A star search algorithms on the game.

Notifications You must be signed in to change notification settings

curryliu30/Search-Algorithm-Applications-On-Puzzels

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 

Repository files navigation

Search-Algorithms-Applications-On-Puzzels

Klotski is a sliding puzzel game. Here is a example of applying BFS, DFS and A star search algorithms on the game.

Breadth-first search (BFS) is an algorithm for traversing or searching tree or graph data structures. It starts at the tree root, and explores all of the neighbor nodes at the present depth prior to moving on to the nodes at the next depth level.

Depth-first search (DFS) is an algorithm for traversing or searching tree or graph data structures. The algorithm starts at the root node and explores as far as possible along each branch before backtracking.

A* is a algorithm that is widely used in pathfinding and graph traversal, which is the process of finding a path between multiple points, called "nodes". It enjoys widespread use due to its performance and accuracy.

About

Klotski is a sliding puzzel game. Here is a example of applying BFS, DFS and A star search algorithms on the game.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 100.0%