how to parse a tree data structure? - Stack Overflow most recent 30 from stackoverflow.com2009-11-27T20:18:44Zhttp://stackoverflow.com/feeds/question/998735http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/998735/how-to-parse-a-tree-data-structure0how to parse a tree data structure?MalcomTucker2009-06-15T22:22:37Z2009-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#9987650Answer by Jacob for how to parse a tree data structure?Jacob2009-06-15T22:30:41Z2009-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#9988091Answer by Jonathan Leffler for how to parse a tree data structure?Jonathan Leffler2009-06-15T22:41:23Z2009-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#9988151Answer by Samuel Carrijo for how to parse a tree data structure?Samuel Carrijo2009-06-15T22:42:39Z2009-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>