-
-
Notifications
You must be signed in to change notification settings - Fork 111
Algorithms to implement #33
Copy link
Copy link
Open
Labels
enhancementNew feature or requestNew feature or requesthelp wantedExtra attention is neededExtra attention is needed
Metadata
Metadata
Assignees
Labels
enhancementNew feature or requestNew feature or requesthelp wantedExtra attention is neededExtra attention is needed
This is an umbrella issue for various algorithms that might or should be implemented mid- to long-term.
Clustering
Connectivity
Cycles
SimpleCyclesfunction #39)DAGs
Eulerian
Paths
Traversal
Trees
Isomorphism & Comparisons
Sets
These algorithms along with their tests should live in a file named after their category, e.g.
DFSis located intraversal.goand tested intraversal_test.go. They should accept aGraph[K comparable, T any]instance and vertex values (T) or vertex hashes (K) where appropriate.