Add PageRank algorithm#1052
Merged
Merged
Conversation
Codecov Report❌ Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## master #1052 +/- ##
==========================================
+ Coverage 95.85% 95.88% +0.02%
==========================================
Files 395 396 +1
Lines 30160 30442 +282
==========================================
+ Hits 28910 29189 +279
- Misses 1250 1253 +3 ☔ View full report in Codecov by Harness. 🚀 New features to boost your workflow:
|
Contributor
Author
|
@siriak Hello could you please take a look at this pull request when you have a moment? |
There was a problem hiding this comment.
Pull request overview
Adds a PageRank implementation to the graph module, exposing it publicly and documenting it in the repository’s algorithm directory.
Changes:
- Implemented
page_rankinsrc/graph/page_rank.rswith handling for dangling nodes, duplicate edges, and early convergence. - Exported the new algorithm from
src/graph/mod.rs. - Added an entry for the new algorithm to
DIRECTORY.md.
Reviewed changes
Copilot reviewed 3 out of 3 changed files in this pull request and generated 6 comments.
| File | Description |
|---|---|
| src/graph/page_rank.rs | New PageRank implementation plus accompanying tests and docs/comments. |
| src/graph/mod.rs | Registers the new module and re-exports page_rank. |
| DIRECTORY.md | Adds a directory listing entry linking to the new implementation. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
Member
|
Please check the comments |
siriak
reviewed
Jun 28, 2026
Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com>
…i/Rust into Add-PageRank-algorithm-
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Description
This pull request implements the PageRank algorithm under the
graphmodule.Algorithm Overview
PageRank is an algorithm used to rank elements in a network based on their structure of incoming links. It computes a probability distribution representing the likelihood that a person randomly clicking on links will arrive at any particular page.
For more details, see the Wikipedia article: https://en.wikipedia.org/wiki/PageRank
Implementation Details
Node: Hash + Eq + Clone, meaning it can rank nodes of any type (e.g.,String, integer types, or custom hashable structures).Type of change
Checklist:
cargo clippy --all -- -D warningsjust before my last commit and fixed any issue that was found.cargo fmtjust before my last commit.cargo testjust before my last commit and all tests passed.mod.rsfile within its own folder, and in any parent folder(s).DIRECTORY.mdwith the correct link.CONTRIBUTING.mdand my code follows its guidelines.