0
7.4kviews
What do you mean by Sparse matrix? How one can implement sparse matrix using Linked list? Support your answer with an example.
1 Answer
0
122views
  1. A matrix containing a large number of zero values are compared to the non-zero values is called a sparse matrix. It can be represented using array or linked list.
  2. In linked list representation, there exists a node consisting of four fields: row, col, num and first. The reo and col …

Create a free account to keep reading this post.

and 4 others joined a min ago.

Please log in to add an answer.