Inactive Tutor answered 11/18/20
Tutor
New to Wyzant
Use the data structure:
typedef _MatrixCell
{
int row;
int column;
double value;
} * TMatrixCell;
struct _LInkedListNode
{
TMatrixCell matrixCellPtr;
struct _LinkedListNode * next;
} * TLinkedListNode;