Search:

Type: Posts; User: Cold_Fusion

Search: Search took 0.03 seconds.

  1. Replies
    5
    Views
    12,229

    Re: Binary Tree

    Ok, thanks for the reply thou.
  2. Replies
    5
    Views
    12,229

    Re: Binary Tree

    Yeah I noticed thanks for answering :)

    Btw, normaly one would do a double right or double left but you do leftright and rightleft, a short explanation would be nice.
  3. Replies
    5
    Views
    12,229

    Re: Binary Tree

    Hey, you're tree looks very nice but


    private void RotateLeft(ref TreeNode node)
    {
    TreeNode t = node.right;
    node.right = t.left;
    if(node.right != null)
    node.right.parent =...
Results 1 to 3 of 3



Click Here to Expand Forum to Full Width