
Patrick B. answered 11/18/20
Math and computer tutor/teacher
Use the data structure:
typedef _MatrixCell
{
int row;
int column;
double value;
} * TMatrixCell;
struct _LInkedListNode
{
TMatrixCell matrixCellPtr;
struct _LinkedListNode * next;
} * TLinkedListNode;