aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--README.md11
1 files changed, 0 insertions, 11 deletions
diff --git a/README.md b/README.md
index 4581aa9..ea29f50 100644
--- a/README.md
+++ b/README.md
@@ -74,14 +74,3 @@ To list all available build targets and their descriptions:
```bash
make help
```
-
-## Adjacency List Storage: Linked List vs Array
-
-Two approaches for storing graph neighbors: linked lists and dynamic arrays.
-Benchmarks show no measurable performance difference
-despite vectors offering better cache locality.
-
-Why? Kahn's algorithm is $O(V+E) $, so memory access patterns
-likely isn't the bottleneck.
-
-Cache locality could become a bottleneck on huge graphs