https://github.com/siddh34/ai-programs
This will be some exercises that I will be performing using java
https://github.com/siddh34/ai-programs
astar-algorithm java manhattan-distance trees
Last synced: 8 months ago
JSON representation
This will be some exercises that I will be performing using java
- Host: GitHub
- URL: https://github.com/siddh34/ai-programs
- Owner: siddh34
- Created: 2022-09-15T18:46:15.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2022-09-15T18:57:49.000Z (about 3 years ago)
- Last Synced: 2025-01-07T13:12:46.164Z (9 months ago)
- Topics: astar-algorithm, java, manhattan-distance, trees
- Language: Java
- Homepage:
- Size: 8.79 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# AI-Programs
This will be some exercises that I will be performing using java### Activity 1
8 puzzle problem in java
Implemented algorithms:
1. A * star (time complexity O(n) where n is number of edges)
2. ManHatthan Algorithm (time compelxity is O(log(min(a,b)))
3. Tree generation time complexity (O(n) where n is number of iterations)