active questions tagged abstract-data-type - Stack Overflowmost recent 30 from stackoverflow.com2009-12-07T23:15:44Zhttp://stackoverflow.com/feeds/tag/abstract-data-typehttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/189855/n-ary-trees-in-c0N-ary trees in CToto2008-10-10T01:52:09Z2008-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>