Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chriss Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by dvst8ive

  1. dvst8ive

    Does order of insertion matter for 2,4 trees?

    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...
  2. dvst8ive

    Help with raising to a power...

    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...
  3. dvst8ive

    Help with raising to a power...

    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...

Part and Inventory Search

Back
Top