-
Notifications
You must be signed in to change notification settings - Fork 20.5k
Feat #6561
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Feat #6561
Conversation
7fa68e1
to
c545617
Compare
Codecov Report❌ Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## update-directory #6561 +/- ##
======================================================
+ Coverage 75.75% 75.77% +0.01%
- Complexity 5772 5782 +10
======================================================
Files 703 704 +1
Lines 19777 19807 +30
Branches 3832 3840 +8
======================================================
+ Hits 14982 15008 +26
- Misses 4215 4217 +2
- Partials 580 582 +2 ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
5f1b83c
to
09a07e2
Compare
2be7ace
to
a5b37b7
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The implementation looks good and correctly follows the 0–1 BFS algorithm. However, note that although BreadthFirstSearch
and DepthFirstSearch
are in com.thealgorithms.searches
, this class logically belongs in com.thealgorithms.graph
because it solves a shortest-path problem rather than a graph traversal. Its placement in the graph
package is therefore appropriate and consistent with other shortest-path algorithms such as Dijkstra or Bellman–Ford.
373dceb
into
TheAlgorithms:update-directory
No description provided.