There are currently no frequently asked questions associated with this exercise – that’s where you come in! You can contribute to this section by offering your own questions, answers, or clarifications on this exercise. Ask or answer a question by clicking reply () below.
If you’ve had an “aha” moment about the concepts, formatting, syntax, or anything else with this exercise, consider sharing those insights! Teaching others and answering their questions is one of the best ways to learn and stay sharp.
Join the Discussion. Help a fellow learner on their journey.
Ask or answer a question about this exercise by clicking reply () below!
Agree with a comment or answer? Like () to up-vote the contribution!
What is different about node_c ?
Why might that be useful?
My answers: node_c 's data is null and it links to 2 nodes. It may be useful to create nodes like this to create a primarily functional unit that doesn’t hold data but only points to other nodes.
Any corrections or discussion would be much appreciated!
What is different about node_c ?
Node c 's difference is it point to more than one other node, it means its datas are shared by multiple nodes. Its datas are null, maybe for an input user?
Why might that be useful?
It can be usefull in term of runtime, since it can “distributes” input user datas into differents “place holders” at the same time.
Node_c can be used to create multiple branches in a Tree or a Linked List. For it to contain more than one pointer, it means that the variable data type used is a List or an Array as against the data type used for the other pointer variables for node_a and node_f that can store single values.