You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: Benchmark Reports.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
# Benchmark Reports
2
2
3
-
This document contains benchmark results for the entire `pofk_algorithms` Rust library, including execution time and memory usage for representative algorithms in each module.
3
+
This document contains benchmark results for the entire `pofk_algorithm` Rust library, including execution time and memory usage for representative algorithms in each module.
- Added robust, dedicated test files for each new algorithm in tree, linked list, and DP modules.
15
+
- Added comprehensive documentation and doctests for all new algorithms.
16
+
- Created full example files: `examples/tree_algorithms_examples.rs`, `examples/linked_list_algorithms_examples.rs`, `examples/dp_algorithms_examples.rs` demonstrating usage of all new algorithms.
17
+
18
+
# v0.2.0 (2025-08-11)
19
+
20
+
## [Unreleased]
21
+
22
+
### Major Additions
23
+
24
+
**Total graph algorithms added: 10+**
25
+
26
+
### Graph Algorithms (10+)
27
+
- Kruskal's Minimum Spanning Tree (MST) algorithm (`graph_algorithms::kruskal`)
28
+
- Prim's Minimum Spanning Tree (MST) algorithm (`graph_algorithms::prim`)
0 commit comments