Tagged Questions

6
votes
5answers
147 views

Storing polynomials in TreeMaps — Why?

I wrote an exam paper today, for a university course concerned with the implementation of data structures in Java. The last question was along these lines: Explain why it's convienient to use a ...
2
votes
8answers
1k views

Object-Oriented Programming: Java.Polynomial — should methods be 'destructive'?

I have to implement Java.Polynomial as a school assignment. Part of the methods are add(polynomial), multiply(polynomial) etc. In the case of something like p.add(q); // computes p + q is it ...
1
vote
1answer
362 views

help with multiplying polynomials in lisp

for example: (3x2 - 5x + 2)(7x + 1) and you simplify it like this: ((3 2)(-5 1)(2 0))((7 1)(1 0)) ((21 3)(3 2)(-35 2)(-5 1)(14 1)(2 0)) (21 3)(32 2)(9 1)(2 0) and you get this answer: 21x3 + 32x2 + ...
0
votes
1answer
63 views

Creating a polynomial from Int text file.

I'm reading in a .txt file to create polynomials. I am having trouble actually printing the polynomials (after they've been put into the linked list). I'm not really sure how to go about 'linking' the ...
0
votes
4answers
1k views

polynomial multiplication using fastfourier transform

i am going through the above topic from CLRS(CORMEN) (page 834) and I got stuck at this point. Can anybody please explain how the following expression, A(x)=A^{[0]}(x^2) +xA^{[1]}(x^2) follows ...
-2
votes
1answer
162 views

how to write a parsePolynomial in Java?

parsePolynomial -- this method takes one parameter (a String) and returns a new Polynomial. The parameter is a String that represents a polynomial of the form similar to 2x^2+5.You must return a new ...