Skip to content

Commit cafd61b

Browse files
committed
add spectral clustering to readme
1 parent 01da5ee commit cafd61b

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

README.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,13 @@ This project implements and compares the performance of various graph algorithms
55
- Breadth-First Search (BFS)
66
- Bellman-Ford
77
- Floyd-Warshall
8+
- Spectral Clustering
89

910
All implementations are optimized for parallel execution to take advantage of multi-core processors.
1011

1112
## Requirements
1213

13-
- Go 1.16 or higher
14+
- Go 1.18 or higher
1415

1516
## Installation
1617

@@ -34,7 +35,7 @@ Run the program using the following command:
3435
```
3536

3637
Where:
37-
- `<algorithm>` is one of: `bfs`, `bellman-ford`, or `floyd-warshall`
38+
- `<algorithm>` is one of: `bfs`, `bellman-ford`, `spectral-clustering`, or `floyd-warshall`
3839
- `<graph_size>` is the number of vertices in the graph
3940
- `<graph_density>` is a float between 0 and 1 representing the density of edges in the graph
4041

@@ -51,6 +52,7 @@ Example:
5152
- `bfs.go`: BFS algorithm implementations
5253
- `bellman_ford.go`: Bellman-Ford algorithm implementations
5354
- `floyd_warshall.go`: Floyd-Warshall algorithm implementations
55+
- `spectral_clustering.go`: Spectral Clustering algorithm implementation
5456

5557
## Performance
5658

0 commit comments

Comments
 (0)