The "Ruby" way of doing an n-ary tree - Stack Overflow most recent 30 from stackoverflow.com 2009-12-04T06:38:13Z http://stackoverflow.com/feeds/question/501232 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/501232/the-ruby-way-of-doing-an-n-ary-tree 2 The "Ruby" way of doing an n-ary tree sardaukar 2009-02-01T17:43:04Z 2009-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/501232/the-ruby-way-of-doing-an-n-ary-tree/501425#501425 3 Answer by Otto for The "Ruby" way of doing an n-ary tree Otto 2009-02-01T19:26:15Z 2009-02-01T19:26:15Z <p>A Hash whose attributes are all Arrays?</p> http://stackoverflow.com/questions/501232/the-ruby-way-of-doing-an-n-ary-tree/501612#501612 5 Answer by rampion for The "Ruby" way of doing an n-ary tree rampion 2009-02-01T21:24:28Z 2009-02-01T21:24:28Z <p>To expand on Otto's answer, an easy way of getting a Hash to auto-vivify arrays is to use the default value block with <code>Hash::new</code>, like so:</p> <pre><code>node_children = Hash.new { |_node_children, node_key| _node_children[node_key] = [] } </code></pre> <p>But really, the code depends on what you want to do with your arrays. You can either set them up with Hashes and Arrays, or make some classes:</p> <pre><code>class Node attr_accessor :value, :children def initialize(value, children=[]) @value = value @children = children end def to_s(indent=0) value_s = @value.to_s sub_indent = indent + value_s.length value_s + @children.map { |child| " - " + child.to_s(sub_indent + 3) }.join("\n" + ' ' * sub_indent) end end ROOT = Node.new('root', %w{ farleft left center right farright }.map { |str| Node.new(str) } ) puts "Original Tree" puts ROOT puts ROOT.children.each do |node| node.children = %w{ one two three four }.map { |str| Node.new(node.value + ':' + str) } end puts "New Tree" puts ROOT puts </code></pre> <p>This code, for example, gives:</p> <pre><code>Original Tree root - farleft - left - center - right - farright New Tree root - farleft - farleft:one - farleft:two - farleft:three - farleft:four - left - left:one - left:two - left:three - left:four - center - center:one - center:two - center:three - center:four - right - right:one - right:two - right:three - right:four - farright - farright:one - farright:two - farright:three - farright:four </code></pre>