I am writing a program in Java that is going to be using polynomials. I need to be able to express polynomials based on something the user enters in.
For example the user might enter the following string.
"2, -7, 8, 0, -1"
The polynomials for this here would be 2 - 7 x + 8 x^2 - x^4
But here's the catch. I cannot split the each number in the string into seperate ints using parse, this would be too easy! Because the String could have any number of numbers in it, this example has 5 numbers another might have 6, or less than that.
Any ideas as to how I could express a polynomial within Java?