Skip to content

Commit 089e0b2

Browse files
authored
Made some addition in the read me file
1 parent 0766ca7 commit 089e0b2

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
# Unidirectional-&-Bidirectional-A-Star-Search-Algorithm-Python-Implementation
22

3-
This is the Unidirectional and Bidirectional A Star Search Algorithm Python Implementation.
3+
This is the Unidirectional and Bidirectional A Star Search Algorithm Python Implementation. For more info about this algorithm: https://en.wikipedia.org/wiki/A*_search_algorithm
44

5-
Important Details (Unidirectional A star search Algorithm):
5+
Important Details Regarding the Implementation (Unidirectional A star search Algorithm):
66

77
1. For the heuristic, Euclidean distance/octile have been used to get an estimate from the given node to the goal node.
88

99
2. In order to address the ties (nodes having the same F value in our (discovered) heap, then we prefer using that node whihc are closer to the goal node i.e. node having higher H value.)
1010

11-
Important Details (Bidirectional A star search Algorithm):
11+
Important Details Regarding the Implementation (Bidirectional A star search Algorithm):
1212

1313
1. For the heuristic, Euclidean distance/octile have been used to get an estimate from the given node to the goal node.
1414

0 commit comments

Comments
 (0)