hot questions tagged n-ary-tree - Stack Overflowmost recent 30 from stackoverflow.com2009-12-23T06:28:14Zhttp://stackoverflow.com/feeds/tag?tagnames=n-ary-tree&sort=hothttp://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>
http://stackoverflow.com/questions/501232/the-ruby-way-of-doing-an-n-ary-tree2The "Ruby" way of doing an n-ary treesardaukar2009-02-01T17:43:04Z2009-02-01T21:24:28Z
<p>I'm writing a Ruby script and would like to use a n-ary tree data structure.</p>
<p>Is there a good implementation that is available as source code? Thanks.</p>
http://stackoverflow.com/questions/283561/extracting-leaf-paths-from-n-ary-tree-in-f2Extracting Leaf paths from n-ary tree in F#Benjol2008-11-12T10:42:23Z2008-11-13T07:22:57Z
<p>Inspired by <a href="http://stackoverflow.com/questions/277106/looking-for-some-interesting-c-programming-problems">this question</a>, I wanted to try my hand at the latest <a href="http://domino.research.ibm.com/Comm/wwwr_ponder.nsf/Challenges/November2008.html" rel="nofollow">ponder this challenge</a>, using F#</p>
<p>My approach is probably completely off course, but in the course of solving this problem, I'm trying to get a list of all the permutations of the digits 0-9.</p>
<p>I'm looking at solving it using a n-ary tree like so:</p>
<pre><code>type Node =
| Branch of (int * Node list)
| Leaf of int
</code></pre>
<p>I'm quite pleased with myself, because I've managed to work out how to generate the tree that I want. </p>
<p>My problem now is that I can't work out how to traverse this tree and extract the 'path' to each leaf as an int. Thing thing that is confusing me is that I need to match on individual Nodes, but my 'outer' function needs to take a Node list.</p>
<p>My current attempt almost does the right thing, except that it returns me the sum of all the paths...</p>
<pre><code>let test = Branch(3, [Branch(2, [Leaf(1)]);Branch(1, [Leaf(2)])])
let rec visitor lst acc =
let inner n =
match n with
| Leaf(h) -> acc * 10 + h
| Branch(h, t) -> visitor t (acc * 10 + h)
List.map inner lst |> List.sum
visitor [test] 0 //-> gives 633 (which is 321 + 312)
</code></pre>
<p>And I'm not even sure that this is tail-recursive.</p>
<p>(You're quite welcome to propose another solution for finding permutations, but I'm still interested in the solution to this particular problem)</p>
<p>EDIT: I've posted a generic permutations algorithm in F# <a href="http://stackoverflow.com/questions/286427/calculating-permutations-in-f">here</a>.</p>