I have a university project where I need to implement an N-ary tree in dart.
This is my node so far
class Node {
Node parent; // parent of the current node
List<Node> children; // children of the current node
int id;
String actualMessage;
Node (int id, String actualMessage){
this.id=id;
this.actualMessage=actualMessage;
children = new List<Node>();
}
}
I am stuck on how I should implement the following methods. I will try to explain what I need with the following example
A is root and has 3 children : B, C and D. B has 2 children: E and F. E has 1 child: G.
- How to add a root / parent node /child node to the tree => How to add A , B and E
- How to remove a node from the tree. => How to remove B. It should remove its children too.
- How to retrieve the "actualMessage" of the parent and all possible children when parent is passed as parameter (on a single level) => How to get the actual message on A ? Method should return actual message on B, C and D too
- How to retrieve the number of nodes from the longest path => number of nodes from the longest path is the path from root to the last node. It is 4 in my case.
- How to retrieve the number of nodes and list of all parents of the tree on any node getting to the root. => number of nodes from G is 4 and list of all parents from G is E, B and A.
Any code or info on how to do the above will be much appreciated. It's my third day where I am stuck on the same thing.
Thank you
Wow, that's a lot you're asking for :P
I've tried out the first 2 requirements and here is the code that can help you fulfil them.
I'll be showing the results of a Pre-Order traversal on the tree.
After running:
Pre-order traversal result:
This agrees with your structure :D
After Running:
Pre-order traversal result:
Again, Seems to be working fine :D