• Our software update is now concluded. You will need to reset your password to log in. In order to do this, you will have to click "Log in" in the top right corner and then "Forgot your password?".
  • Welcome to PokéCommunity! Register now and join one of the best fan communities on the 'net to talk Pokémon and more! We are not affiliated with The Pokémon Company or Nintendo.
Alakazam17
Reaction score
216

Profile posts Latest activity Postings About

  • java code for binary search tree integers

    protected BinaryNode remove( Comparable x, BinaryNode t ) {
    if( t == null )
    throw new ItemNotFoundException( x.toString( ) );
    if( x.compareTo( t.element ) < 0 )
    t.left = remove( x, t.left );
    else if( x.compareTo( t.element ) > 0 )
    t.right = remove( x, t.right );
    else if( t.left != null && t.right != null ) // Two children
    {
    t.element = findMin( t.right ).element;
    t.right = removeMin( t.right );
    } else
    t = ( t.left != null ) ? t.left : t.right;
    return t;
    }

    Just posting this here so I can access it again later. XDD
    Hey Alakazam, just wanted to be even more obnoxious and tell you to disregard the PM I sent you about the UU and Doubles pairings. POKEMASTERALEX and I are toughing it out and just going through the matches.


    Edit 20 minutes later: I did manage to win the UU 2-0...gahh...I hate bittersweet victories >_>..

    So yeah, don't worry about mixing the pairings, we'll do the doubles later. I hope the tournament, mostly the main one, starts to move quicker. Sorry to hear about your own wifi! I hope it works, it sucks that you never get to battle.
    Billy! Finally got everything sorted now, so I'll be able to battle you whenever you're next free ^^ Sorry for the wait, I just don't want to go into a battle with a half arsed effort considering I had things on my mind, and Pokemon was well away from my thoughts at that time, but everything is sorted now!
    yo i finished my battle with dalevl and i won so move me up to the next round please :)
    Hey,Zam, do me a favor, would ya? Can we please go on to have an IV match? I need to check some Tangela.
    Hey, Bill? Will you be on after 4pm EST by any chance? I'd love to get the chance to battle you sometime, maybe doubles if you're up for it. ^_^ I have to go visit a local college for the next two hours, but I'll be home after that. Any chance you're free to fight today?
  • Loading…
  • Loading…
  • Loading…
Back
Top