-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcalculator.cpp
87 lines (60 loc) · 1.34 KB
/
calculator.cpp
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
#include "calculator.h"
#include "parser.h"
#include "ast.h"
#include <string>
#include <iostream>
#include <sstream>
#include <map>
Calculator::Calculator():
memory(0)
{}
int Calculator::eval(string expr) {
Parser* parser = new Parser(new istringstream(expr));
AST* tree = parser->parse();
int result = tree->evaluate();
delete tree;
delete parser;
return result;
}
void Calculator::store(int val) {
memory = val;
}
int Calculator::recall() {
return memory;
}
int Calculator::clear() {
memory = 0;
return memory;
}
void Calculator::plus(int val) {
memory += val;
}
void Calculator::minus(int val) {
memory -= val;
}
void Calculator::setVar(string var, int val) {
maps[var] = val;
}
bool Calculator::containVar(string var) {
return maps.count(var);
}
int Calculator::getVar(string var) {
return maps[var];
}
string Calculator::compile(string expr) {
Parser* parser = new Parser(new istringstream(expr));
AST* tree = parser->parse();
string result = tree->compile();
delete tree;
delete parser;
return result;
}
string Calculator::getValue() {
string values;
int count = 7;
for(map<string, int>::iterator it = maps.begin(); it != maps.end(); ++it){
values = values + "equ " + it->first + " M[" + to_string(count)+ "] \n";
count++;
}
return values;
}