Anyone Know a Great Sparse One Dimensional Array Library in Python?
- by TheJacobTaylor
I am working on an algorithm in Python that uses arrays heavily. The arrays are typically sparse and are read from and written to constantly. I am currently using relatively large native arrays and the performance is good but the memory usage is high (as expected).
I would like to be able to have the array implementation not waste space for…