; infix Infix prints the values in a binary search tree <br />;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;<br />; ;<br />; infix Infix prints the values in a binary search tree ;<br />; in infix order. ;<br />; ;<br />; ;<br />; Entry 0(r14)= ->Pointer to the root of a binary tree ;<br />; jal infix ;<br />; ;<br />; Uses r1 ;<br />; ;<br />;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;<br /><br /><br />infix<br />jrr31<br /><br /><br /><br /><br />Hi, i am taking computer system..below is the pesudo code, but i got lost converting it to another programming language.<br /><br /><!--c1--><div class='codetop'>CODE</div><div class='codemain'><!--ec1--><br />void infix(bst tree)Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â // add n to the tree<br />{<br />Â Â Â Â if ( tree != 0 )Â Â Â Â Â Â Â Â Â Â Â Â Â Â // do nothing if the tree is empty<br />Â Â Â Â {<br />Â Â Â Â Â Â Â Â infix(tree.left);Â Â Â Â // traverse the left children<br />Â Â Â Â Â Â Â Â print tree.value;Â Â Â Â // print the value in this node<br />Â Â Â Â Â Â Â Â infix(tree.right);Â Â // traverse the right children<br />Â Â Â Â }<br />}<!--c2--></div><!--ec2-->
</div>
</div>