N-ary trees in C - Stack Overflow most recent 30 from stackoverflow.com 2009-11-09T03:25:48Z http://stackoverflow.com/feeds/question/189855 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/189855/n-ary-trees-in-c 0 N-ary trees in C Toto 2008-10-10T01:52:09Z 2008-10-10T16:30:06Z <p>Which would be a neat implemenation of a N-ary tree in C language?</p> <p>Particulary, I want to implement an n-ary tree, not self-ballancing, with an unbound number of children in each node, in which each node holds an already defined struct, like this for example:</p> <pre><code>struct task { char command[MAX_LENGTH]; int required_time; }; </code></pre> http://stackoverflow.com/questions/189855/n-ary-trees-in-c/189900#189900 4 Answer by Matt J for N-ary trees in C Matt J 2008-10-10T02:21:00Z 2008-10-10T02:21:00Z <p>As a first pass, you could simply create a <em>struct</em> (let's call it <em>TreeNode</em>) which holds a <em>task</em>, as well as a set of pointers to <em>TreeNode</em>s. This set could either be an array (if <strong>N</strong> is fixed) or a linked list (if <strong>N</strong> is variable). The linked list would require you to declare an additional <em>struct</em> (let's called it <em>ListNode</em>) with a <em>TreeNode</em> pointer to the actual child (part of the tree), and a pointer to the next <em>ListNode</em> in the list (<strong>null</strong> if at the end of the list).</p> <p>It might look something like this:</p> <pre><code>struct task { char command[MAX_LENGTH]; int required_time; }; struct TreeNode; struct ListNode { struct TreeNode * child; struct ListNode * next; }; struct TreeNode { struct task myTask; struct ListNode myChildList; }; </code></pre> http://stackoverflow.com/questions/189855/n-ary-trees-in-c/192089#192089 3 Answer by Remo.D for N-ary trees in C Remo.D 2008-10-10T16:15:10Z 2008-10-10T16:29:00Z <p>Any n-ary tree can be represented as a binary tree where in each node the left pointer points to the first child and the right pointer points to the next brother.</p> <pre> R R / | \ | B C D B -- C -- D / \ | | | E F G E -- F G </pre> <p>So, your case would be:</p> <pre><code>struct task { char command[MAX_LENGTH]; int required_time; }; struct node { struct task taskinfo; struct node *firstchild; struct node *nextsibling; }; </code></pre> <p>This technique has the advantage that many algorithms are simpler to write as they can be expressed on a binary tree rather than on a more complicated data structure.</p>