how to parse a tree data structure? - Stack Overflow most recent 30 from stackoverflow.com 2009-11-27T20:18:44Z http://stackoverflow.com/feeds/question/998735 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/998735/how-to-parse-a-tree-data-structure 0 how to parse a tree data structure? MalcomTucker 2009-06-15T22:22:37Z 2009-06-15T22:42:39Z <p>I have a tree data structure, comprised of nodes, that I need to parse into an expression tree. My nodes look like this (simplified):</p> <pre><code> public class Node { public Node Left { get; set; } public Node Right { get; set; } public Operation OperationType { get; set; } public object Value { get; set; } } </code></pre> <p>What is the best / correct way to find the bottom of the tree and work backwards building up the expression tree? Do you parse left or right first? </p> http://stackoverflow.com/questions/998735/how-to-parse-a-tree-data-structure/998765#998765 0 Answer by Jacob for how to parse a tree data structure? Jacob 2009-06-15T22:30:41Z 2009-06-15T22:30:41Z <p>I don't think it matters which direction you traverse first. However, in a world where left-to-right language dominates, someone would more intuitively understand your code if you went left first.</p> http://stackoverflow.com/questions/998735/how-to-parse-a-tree-data-structure/998809#998809 1 Answer by Jonathan Leffler for how to parse a tree data structure? Jonathan Leffler 2009-06-15T22:41:23Z 2009-06-15T22:41:23Z <p>If you want to get to the bottom of the tree first, then you do an 'in-order' or perhaps 'post-order' search. An 'in-order' search will find the bottom, left-most node first, followed by the parent of that node, and then the right-hand child of the parent. A 'post-order' search will 'visit' both the left child node and the right child node before visiting the parent node.</p> <p>Consider the expression 'x + y'. An in-order search would yield:</p> <pre><code>'x', '+', 'y' </code></pre> <p>whereas an post-order search would yield:</p> <pre><code>'x', 'y', '+' </code></pre> http://stackoverflow.com/questions/998735/how-to-parse-a-tree-data-structure/998815#998815 1 Answer by Samuel Carrijo for how to parse a tree data structure? Samuel Carrijo 2009-06-15T22:42:39Z 2009-06-15T22:42:39Z <p>As mentioned, it doesn't really matter where you go first. But the most usual <a href="http://en.wikipedia.org/wiki/Tree%5Ftraversal" rel="nofollow">tree traversal</a> algorithms. If this tree is organized the way I think, inorder would be recommended:</p> <p>(from wikipedia)To traverse a non-empty binary tree in inorder, perform the following operations recursively at each node:</p> <ol> <li>Traverse the left subtree.</li> <li>Visit the root.</li> <li>Traverse the right subtree.</li> </ol> <p>(This is also called Symmetric traversal.)</p>