Are there any difference(advantage/disadvantage) between sparse matrix by linked-list representation and array representation?
Linked-list representation stores the row and column link like this: https://i.stack.imgur.com/VgXY3.png
Array stores the row, column, and value.