Skip to content

dormalk/Artificial_IntelligenceProject

Repository files navigation

Artificial_IntelligenceProject

AI project folder containe many search algorithm as:
DFS
BFS
BEST FIRST SEARCH
ASTAR

Develope as generic classes that can resolve any problem that implement interface 'ISearchable'
ISearchable interface provide the methods:
getInitialState() : State<>
isGoalState(State<>) : Bool
getSeccesors(State<>) : List<State<>>

State class is a unit in search algorithm that contain information about some situation/grid of the agent

Maze Project folder contain classes that present map of maze problem
In the Main method there is a map generator that create random map
Maze class implements the 'ISearchable' interface.
More than thatm there is Windows Form Class that make visual map for user that present the optimal solution

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages