CSCI 203 Project 2 Polynomial Arithmetic
Build a suitable GUI for users to enter two polynomials and to select addition or multiplication options.
GUI suggestions: You can use textfields for input and output and buttons to add multiply and clear, for example. Polynomials could be represented using the caret to indicate exponentiation as
5x^4+2.2x^3+88x+17.9
Parse input and store terms in a linked list. You are encouraged but not required to use the LinkedList class provided in java.util. This class implements the Collection interface so it provides an Iterator as well as add and remove methods. Complete the addition or multiplication operation and display the result.