Data structures and algorithms (C # implementation) series-AVLTree (II) (External extraction)

Source: Internet
Author: User
Data structures and algorithms (C # implementation) series --- AVLTree (II)

// --------------- Override --------------------

Public override void AttachKey (object _ obj)

{

If (! IsEmpty ())

Throw new Exception ("My: this node must be a empty tree node! ");

This. key = _ obj;

// Generate a degree long array and initialize it as an empty tree

This. treeList = new ArrayList ();

This. treeList. Capacity = (int) this. degree;

 

For (int I = 0; I <this. degree; I ++)

{

TreeList. Add (new AVLTree ());

}

//

This. height = 0;

}

// Balance the tree after modifying the Tree Structure

Public override void Balance ()

{

This. AdjustHeight ();

// If the value is greater than 1, it indicates imbalance.

If (Math. Abs (this. BalanceFactor ()> 1)

{

If (this. BalanceFactor ()> 0)

{

If (AVLTree) this. Left). BalanceFactor ()> 0)

This. LLRotation ();

Else

This. LRRotation ();

}

Else

{

If (AVLTree) this. Right). BalanceFactor () <0)

This. RRRotation ();

Else

This. RLRotation ();

}

}

}

 

 

Public int Height {get {return this. height ;}}

}

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.