This is just a matter of grabbing the head power.
// *************************************** //
// get the degree of the polynomial //
// *************************************** //
unsigned int FLOAT_POLY::get_degree()
{
if(head==NULL) return(0);
else return(head->power);
}