Y
Hacker News
new
|
ask
|
show
|
jobs
by
craigharley
2697 days ago
I made a super simple graph in typescript using an adjacency matrix because all the ones I could find were really bloated, or used far too much memory since I have have a very dense graph.
1 comments
random4215
2697 days ago
Matrices are a big memory cost. I would suggest to use Maps instead to maintain constant time operations.
link
craigharley
2696 days ago
How would you recommend going about doing this?
link