public Polynomial() { // zero polynomial Head = null; }
public Polynomial(int coefficient, int power) { Head = new Term(coefficient, power, null); }
public Term(int coefficient, int power, Term next) { Coefficient = coefficient; Power = power; Next = next; }