polynomial multiplication using linked lists pseudocode
Answers
Answered by
1
Answer:
Set both the polynomial in descending order of the coefficient. Multiply each node of multiplicand with each node of the multiplier (multiplication of the coefficient part and addition of the exponent part) and add them into a newly formed linked list in descending order.
Explanation:
Similar questions