Data structures and algorithms (C # implementation) series-generalized tree (II)

Source: Internet
Author: User

Data structures and algorithms (C # implementation) series --- generalized tree (II)

Heavenkiller (original)

 

Public override object key {get {return this. Key ;}}

Public override uint degree {get {return this. degree ;}}

// Public override uint height {get {return this. Height ;}}

 

Public override bool isempty () // property takes the place of isempty ()

{

Return false; // generaltree won't be empty for ever

}

Public override bool isleaf ()

{

Return this. Degree = 0; // if this tree's degree is zero, it means the tree has no Subtrees, so it is leaf certainly

}

 

// Overwrite object. Equals () --- reference type Realization

Public override bool equals (object _ OBJ)

{

If (! Base. Equals (_ OBJ ))

Return false; // if the base class is not equal, the base class is not equal.

// Some entries in the base class can be removed from this

 

// The base class has been identified as the generaltree type, so the transformation will not fail

Generaltree tmptree = (generaltree) _ OBJ;

 

// Compare referenced members

If (! Object. Equals (this. treelist, tmptree. treelist ))

Return false;

// Compare value type members

 

Return true;

}

 

 

}

}

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.