Name:
Anonymous
2011-12-23 0:08
Alright /proglodites/, let's hear how all of you implement a sparse arrays that stores two-dimensional data.
Name:
sage
2011-12-24 9:51
This is the first thing they teach when you learn about graphs.
Sparse graph -> Adjacency list
Dense graph -> Adjacency matrix
It is not rocket science.