Algorithm for polynomial addition using linked list?
Answers
Answered by
0
For adding two polynomials that are stored as a linked list. We need to add the coefficients of variables with the same power. In a linked list node contains 3 members, coefficient value link to the next node. This is how a linked list represented polynomial looks like.
Hope it helps!!
Answered by
3
Explanation:
For adding two polynomials that are stored as a linked list. We need to add the coefficients of variables with the same power. In a linked list node contains 3 members, coefficient value link to the next node. This is how a linked list represented polynomial looks like.
Similar questions