1. Introduction

In mathematics, a polynomial is an expression that contains a sum of powers in one or more variables multiplied by coefficients. A polynomial in one variable, x, with constant coefficients is like: a_0+a_1x+a_2x^2+...+a_{n-1}x^{n-1}+a_nx^n. We call each item, e.g., a_nx^n, a term. If two terms have the same power, we call them like terms.

In this tutorial, we’ll show how to add and multiply two polynomials using a linked list data structure.

2. Represent a Polynomial with a Linked List

We can use a linked list to represent a polynomial. In the linked list, each node has two data fields: coefficient and power. Therefore, each node represents a term of a polynomial. For example, we can represent the polynomial 2-4x+5x^2 with a linked list:

polynomial

We can sort a linked list in O(n\log n) time, where n is the total number of the linked list nodes. In this tutorial, we’ll assume the linked list is ordered by the power for the simplicity of our algorithms.

3. Add Two Polynomials

To add two polynomials, we can add the coefficients of like terms and generate a new linked list for the resulting polynomial. For example, we can use two liked lists to represent polynomials 2-4x+5x^2 and 1+2x - 3x^3:

two polynomials

When we add them together, we can group the like terms and generate the result 3 - 2x^2 + 5x^2 - 3x^3:

sum result

Since both linked list are ordered by the power, we can use a two-pointer method to merge the two sorted linked list:

Rendered by QuickLaTeX.com

In this algorithm, we first create two pointers, p1 and p2, to the head pointers of the two input polynomials. Then, we generate the new polynomial nodes based on the powers of these two pointers. There are three cases:

  1. p1‘s power is greater than p2‘s power: In this case, we append a new node with p1‘s power and coefficient. Also, we move p1 to the next node.
  2. p2‘s power is greater than p1‘s power: In this case, we append a new node with p2‘s power and coefficient. Also, we move p2 to the next node.
  3. p1 and p2 have the same power: In this case, the new coefficient is the total of p1‘s coefficient and p2‘s coefficient. If the new coefficient is not 0, we append a new node with the same power and the new coefficient. Also, we move both p1 and p2 to the next nodes.

After that, we continue to append the remaining nodes from p1 or p2 until we finish the calculation on all nodes.

The append function can create a new linked list node based on the input power and coefficient. Also, it appends the new node to the tail node and returns the new tail node:

Rendered by QuickLaTeX.com

This algorithm traverses each linked list node only once. Therefore, the overall running time is O(n + m), where n and m are the number of terms for the two input polynomials.

4. Multiply Two Polynomials

To multiply two polynomials, we can first multiply each term of one polynomial to the other polynomial. Suppose the two polynomials have n and m terms. This process will create a polynomial with n\times m terms.

For example, after we multiply 2-4x+5x^2 and 1+2x - 3x^3, we can get a linked list:

multiply

This linked list contains all terms we need to generate the final result. However, it is not sorted by the powers. Also, it contains duplicate nodes with like terms. To generate the final linked list, we can first merge sort the linked list based on each node’s power:

sort

After the sorting, the like term nodes are grouped together. Then, we can merge each group of like terms and get the final multiplication result:

multiply result

We can describe these steps with an algorithm:

Rendered by QuickLaTeX.com

In this algorithm, we first use a nested while loop to multiply all term pairs from the two polynomials. This takes O(nm) time, where n and m are the number of terms for the two input polynomials. Also, this process creates a linked list with n\times m nodes.

Then, we merge sort the linked list based on each node’s power. This process takes O(nm\log (nm)) time.

After we sort the linked list, we can use a two-pointer approach to merge the like terms:

Rendered by QuickLaTeX.com

In this approach, we use one pointer as the start of a like term group and use another pointer to traverse the like terms in the same group. Each time we find a like term, we add its coefficient to the start like term node. Once we finish one like term group, we move the start pointer to the next group and repeat the same process to merge like terms. The running time of this process is O(nm) as we need to visit n\times m nodes.

Overall, the running time is O(nm) + O(nm\log (nm)) + O(nm) = O(nm\log (nm) ).

5. Conclusion

In this tutorial, we showed how to represent a polynomial with the linked list data structure. Also, we showed two algorithms to add and multiply two linked list representations of polynomials.

Comments are open for 30 days after publishing a post. For any issues past this date, use the Contact form on the site.