Tagged Questions
The n-ary-tree tag has no wiki summary.
4
votes
2answers
1k views
Extracting Leaf paths from n-ary tree in F#
Inspired by this question, I wanted to try my hand at the latest ponder this challenge, using F#
My approach is probably completely off course, but in the course of solving this problem, I'm trying ...
2
votes
1answer
466 views
N-ary search tree in java with Comparable userObject?
So let's say I'm building a Tree using javax.swing.tree.DefaultMutableTreeNode and I add N children to a particular node. I want the children to be in a particular order (based on Comparable/a custom ...
2
votes
3answers
862 views
The “Ruby” way of doing an n-ary tree
I'm writing a Ruby script and would like to use a n-ary tree data structure.
Is there a good implementation that is available as source code? Thanks.
1
vote
6answers
301 views
F#: Recursive collect and filter over N-ary Tree
This is hurting my brain!
I want to recurse over a tree structure and collect all instances that match some filter into one list.
Here's a sample tree structure
type Tree =
| Node of int * Tree ...
1
vote
2answers
5k views
N-ary trees in C
Which would be a neat implemenation of a N-ary tree in C language?
Particulary, I want to implement an n-ary tree, not self-ballancing, with an unbound number of children in each node, in which each ...