Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Need Assistance Understanding This Class
Message
General information
Forum:
ASP.NET
Category:
Coding, syntax and commands
Miscellaneous
Thread ID:
01386808
Message ID:
01386812
Views:
75
>I'm trying to understand a binaray tree class. In the file is this class:
>
>
>// Define tree nodes
>public class TTreeNode 
>{
>   public string name;
>   public double value; 
>   public TTreeNode left, right;        // <-- What is this??
>       
>    // Constructor to create a single node 
>	public TTreeNode (string name, double d) 
>    {
>          this.name = name;
>          value = d;
>          left = null;
>          right = null;
>    }
>}
>
>
>See comment in line. I don't understand that syntax.

The TTreeNode class has left and right pointers of the same class.
If it's not broken, fix it until it is.


My Blog
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform