active questions tagged abstract-data-type - Stack Overflow most recent 30 from stackoverflow.com 2009-12-07T23:15:44Z http://stackoverflow.com/feeds/tag/abstract-data-type 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>