Computer Science, asked by mahesijjh, 3 months ago

Algorithm for polynomial addition using linked list?​

Answers

Answered by ItzMissLegend
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 VarshatheRowdy8
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