My question is pretty much like the subject says - I'm trying to find an instance of where the order of insertion of items into a 2,4 tree changes the outcome of the final tree given a different order of insertion, but can't find an example yet... so this leads me to believe no, but can someone...
hey guys, i kind of answered my own question here, but here's what i came up with. it's a recursive method to compute x^y (x raised to the power of y), where x & y are integers and y > 0.
public static double raiseToPower(double base, int exponent)
{
if (exponent == 1)
{ return...
this seems to be an elementary problem, but one i don't think i've ever had to deal with. i'm making a class that deals with polynomial terms, adding, multiplying and evaluating a given polynomial based on its terms.
i'm writing a method to determine if a term, evaluated at 'X,' is greater than...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.