codezonediitj / pydatastructs

A python package for data structures and algorithms
https://pydatastructs.readthedocs.io/en/stable/
Other
202 stars 270 forks source link

Implement sparse matrix using linked list #357

Closed aaadddiii closed 3 years ago

aaadddiii commented 3 years ago

Description of the problem

A matrix is a two-dimensional data object made of m rows and n columns, therefore having total m x n values. If most of the elements of the matrix have 0 value, then it is called a sparse matrix

Example of the problem

References/Other comments

https://en.wikipedia.org/wiki/Sparse_matrix

yasht01 commented 3 years ago

Hey! Can I work on this issue?