文件名称:CodingInterviews:剑指Offer——名企面试官精讲典型编程题
文件大小:811KB
文件格式:ZIP
更新时间:2024-05-29 15:16:37
C++
#include #include #include #include using namespace std; //判断是否为操作符 bool isOperator(char op) { return (op == '+' || op == '-' || op == '*' || op == '/'); } //判断是否为数字 bool isDigit(char op) { return (op >= '0' && op <= '9'); } //计算表达式结果 int cal(int left, int right, char op) { int res = 0; if (op == '+') res = left + right; else if (op == '-') res = left - right; else if (op == '*') res = left