An open API service indexing awesome lists of open source software.

https://github.com/vaneeza-7/graph-optimization-problem-using-uninformed-search

Calculating the minimum cost and optimal path for a graph using bfs, dfs, and ucs in Artificial Intelligence
https://github.com/vaneeza-7/graph-optimization-problem-using-uninformed-search

artificial-intelligence artificial-intelligence-algorithms bfs dfs graph minimum-cost networkx optimal-path ucs

Last synced: over 1 year ago
JSON representation

Calculating the minimum cost and optimal path for a graph using bfs, dfs, and ucs in Artificial Intelligence

Awesome Lists containing this project

README

          

# Graph Optimized Path Finding

Calculating the minimum cost and optimal path for a graph using BFS, DFS, and UCS in Artificial Intelligence.

Assignment @ Artificial Intelligence

## Algorithms

- **Breadth-First Search (BFS)**: Explores all possible paths level by level, ensuring the shortest path in an unweighted graph.
- **Depth-First Search (DFS)**: Explores paths by going as deep as possible, useful for exploring all possible paths in a graph.
- **Uniform Cost Search (UCS)**: Finds the least cost path in a weighted graph, expanding the least cost node first.

## License

This project is licensed under the MIT License. See the [LICENSE](LICENSE) file for details.