Here is a simple Polynomial class.
Its purpose is to show how one can simply create a Polynomial class without using abstract datastructures such as linked lists etc.
Each term is printed out in order of its power - from highest to lowest.
Inspiration was taken from a Java source code, the link appears to now be dead.