I am facing difficulty in understanding the following paragraph taken from Representing Rooted Trees. It basically shows two methods for representing trees. G & T is somewhat clear to me, but the other one is not that much clear to me, which shows class definition.
G&T Option: Each node has 3-references: item, parent, children. The single reference for children has to refer to a list (so the node can have as many children as necessary).
Another option is to have siblings linked directly. E.g.
class SibTreeNode { Object item; SibTreeNode parent; SibTreeNode firstChild; // Left-most child. SibTreeNode nextSibling; } public class SibTree { SibTreeNode root; int size; // Number of nodes in the tree. }
The author in the video also claims (at around 18 minutes) that second method will require less memory. Can someone help me understand the class definitions and how this will require less memory as compared to first method?
SibTreeNode. Okay, we have to constructparentand both children. To constructparent, we have to constructSibTreeNode... back to the beggining. Pointers! – Bartek Banachewicz Feb 21 at 12:35