forked from aaronbloomfield/pdr
-
Notifications
You must be signed in to change notification settings - Fork 228
/
TreeCalcTest.cpp.html
34 lines (31 loc) · 2.37 KB
/
TreeCalcTest.cpp.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<meta name="GENERATOR" content="GNU source-highlight
by Lorenzo Bettini
http://www.lorenzobettini.it
http://www.gnu.org/software/src-highlite">
<title>TreeCalcTest.cpp</title>
</head>
<body style="background-color:white">
<pre><i><span style="color:#9A1900">// TreeCalcTest.cpp</span></i>
<i><span style="color:#9A1900">// CS 2150: Tree calculator test program</span></i>
<i><span style="color:#9A1900">// Your code MUST work with an UNMODIFIED version of this test program</span></i>
<i><span style="color:#9A1900">// We will be using this program to test your implementations</span></i>
<b><span style="color:#000080">#include</span></b> <span style="color:#FF0000"><iostream></span>
<b><span style="color:#000080">#include</span></b> <span style="color:#FF0000">"TreeCalc.h"</span>
<b><span style="color:#0000FF">using</span></b> <b><span style="color:#0000FF">namespace</span></b> std<span style="color:#990000">;</span>
<span style="color:#009900">int</span> <b><span style="color:#000000">main</span></b><span style="color:#990000">()</span> <span style="color:#FF0000">{</span>
<span style="color:#008080">TreeCalc</span> tester<span style="color:#990000">;</span>
<i><span style="color:#9A1900">// read expression input from the user</span></i>
tester<span style="color:#990000">.</span><b><span style="color:#000000">readInput</span></b><span style="color:#990000">();</span>
<i><span style="color:#9A1900">// print out the output in postorder, in order, preorder forms</span></i>
tester<span style="color:#990000">.</span><b><span style="color:#000000">printOutput</span></b><span style="color:#990000">();</span>
<i><span style="color:#9A1900">// calculate the result of the expression tree</span></i>
cout <span style="color:#990000"><<</span> <span style="color:#FF0000">"The result of the expression tree is "</span> <span style="color:#990000"><<</span> tester<span style="color:#990000">.</span><b><span style="color:#000000">calculate</span></b><span style="color:#990000">()</span> <span style="color:#990000"><<</span> endl<span style="color:#990000">;</span>
<b><span style="color:#0000FF">return</span></b> <span style="color:#993399">0</span><span style="color:#990000">;</span>
<span style="color:#FF0000">}</span>
</pre>
</body>
</html>