Mirror of
forum.nim-lang.org
index
6018 :: How to create adjacency list in Nim?
[2020-03-02T14:46:44+01:00]
View Orginal
hany33
(orginal)
[2020-03-02T14:46:44+01:00]
view original
How to create adjacency list in Nim?
e
(orginal)
[2020-03-02T22:40:13+01:00]
view original
There are many ways to keep an adjacency list. The method I chose for a in a
quickie graph library
was to use hash sets for in- and out- edges from a graph node.