资源简介
C++算术表达式求值(支持函数)
sin cos tan asin acos atan log sqrt
cos(sin(sqrt(100*sqrt(100*10^2))))*(1.0e+5)/(1.0e-5)
= 8.74513e+009
代码片段和文件信息
#include “stdafx.h“
#include “Arithmetic.h“
#include “deelx.hpp“
CArithmetic::CArithmetic(void)
: result(0) left_result(0)
right_result(0) oper(TEXT(‘\0‘))
left_child(NULL) right_child(NULL)
parent(NULL)
{
}
CArithmetic::CArithmetic(TCHAR choperator const TCHAR *pFuncExp CArithmetic *left CArithmetic *right)
: result(0) left_result(0)
right_result(0) oper(TEXT(‘\0‘))
left_child(NULL) right_child(NULL)
parent(NULL)
{
this->oper = choperator;
funcExp = pFuncExp;
left_child = left;
right_child = right;
}
CArithmetic::CArithmetic(double uresult const TCHAR *pFuncExp)
: result(0) left_result(0)
right_result(0) oper(TEXT(‘\0‘))
left_child(NULL) right_child(NULL)
parent(NULL)
{
this->result = uresult;
funcExp = pFuncExp;
}
CArithmetic::~CArithmetic(void)
{
try
{
if (left_child != NULL)
{
delete left_child;
}
if (right_child != NULL)
{
delete right_child;
}
}
catch (...)
{ }
parent = NULL;
}
double CArithmetic::GetResult()
{
left_result = 0;
right_result = 0;
if (left_child != NULL && right_child != NULL)
{
left_result = left_child->GetResult();
right_result = right_child->GetResult();
switch (oper)
{
case TEXT(‘+‘):
result = left_result + right_result;
break;
case TEXT(‘-‘):
result = left_result - right_result;
break;
case TEXT(‘*‘):
result = left_result * right_result;
break;
case TEXT(‘/‘):
if (right_result != 0)
result = left_result / right_result;
else
result = 0xFFFFFFFF;
break;
case TEXT(‘^‘):
result = pow(left_result right_result);
break;
default:
result = 0;
break;
}
}
basic_string funcExpTmp = funcExp;
Function(funcExpTmp);
return result;
}
void CArithmetic::Output(_ostream_type &os)
{
if (left_child != NULL && right_child != NULL)
{
os << TEXT(‘(‘);
left_child->Output(os);
os << oper;
right_child->Output(os);
os << TEXT(‘)‘);
}
else
{
os << result;
}
}
double CArithmetic::Function( basic_string &funcExp )
{
if (funcExp.empty())
{
return result;
}
if (funcExp.find(TEXT(“sin“)) == 0)
{
result = sin(result);
funcExp = funcExp.substr(3);
}
else if (funcExp.find(TEXT(“cos“)) == 0)
{
result = cos(result);
funcExp = funcExp.substr(3);
}
else if (funcExp.find(TEXT(“tan“)) == 0)
{
result = tan(result);
funcExp = funcExp.substr(3);
}
else if (funcExp.find(TEXT(“asin“)) == 0)
{
result = asin(result);
funcExp = funcExp.substr(4);
}
else if (funcExp.find(TEXT(“acos“)) == 0)
{
result = acos(result);
funcExp = funcExp.substr(4);
}
else if (funcExp.find(TEXT(“atan“)) == 0)
{
result = atan(result);
funcExp = funcExp.substr(4);
}
else if (funcExp.find(TEXT(“log“)) == 0)
{
result = log(result);
funcExp = funcExp.substr(3);
}
else if (funcExp.find(TEXT(“sqrt“)) == 0)
{
resu
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 13162 2014-05-16 17:32 Calculator\Calculator\Arithmetic.cpp
文件 2990 2014-05-16 16:51 Calculator\Calculator\Arithmetic.h
文件 733 2014-05-16 17:36 Calculator\Calculator\Calculator.cpp
文件 4687 2013-11-12 16:20 Calculator\Calculator\Calculator.vcproj
文件 880529 2014-05-16 17:32 Calculator\Calculator\Debug\Arithmetic.obj
文件 6850 2014-05-16 17:36 Calculator\Calculator\Debug\BuildLog.htm
文件 405 2014-05-16 13:00 Calculator\Calculator\Debug\Calculator.exe.em
文件 472 2014-05-16 13:00 Calculator\Calculator\Debug\Calculator.exe.em
文件 387 2014-05-16 17:36 Calculator\Calculator\Debug\Calculator.exe.intermediate.manifest
文件 67466 2014-05-16 17:36 Calculator\Calculator\Debug\Calculator.obj
文件 1048576 2014-05-16 13:00 Calculator\Calculator\Debug\Calculator.pch
文件 65 2014-05-16 17:36 Calculator\Calculator\Debug\mt.dep
文件 10859 2014-05-16 13:00 Calculator\Calculator\Debug\stdafx.obj
文件 527360 2014-05-16 17:36 Calculator\Calculator\Debug\vc80.idb
文件 413696 2014-05-16 17:36 Calculator\Calculator\Debug\vc80.pdb
文件 98132 2012-11-14 17:21 Calculator\Calculator\deelx.hpp
文件 968 2013-11-12 16:19 Calculator\Calculator\ReadMe.txt
文件 215 2013-11-12 16:19 Calculator\Calculator\stdafx.cpp
文件 374 2013-11-12 16:45 Calculator\Calculator\stdafx.h
文件 895 2013-11-12 16:19 Calculator\Calculator.sln
目录 0 2014-05-16 17:36 Calculator\Calculator\Debug
目录 0 2014-05-16 17:36 Calculator\Calculator
目录 0 2014-05-16 16:51 Calculator
----------- --------- ---------- ----- ----
3078821 23
- 上一篇:C++ 超大整数类 及RSA加密
- 下一篇:东南大学c++ PPT
相关资源
- 东南大学c++ PPT
- C++ 超大整数类 及RSA加密
- 操作系统 缓冲池 C++
- 图像处理连通域算法 c++ vc 6.0
- DDA画线算法
- C++局域网文件传输
- 防火墙C++源码,测试可以运行
- 用c++自编的GPS单点定位程序源码
- 四叉树定义实现C++代码
- 后缀表达式求值
- vc++简易图形编辑器MFC
- C++实现字符串求交集、并集、差集
- c++ 栈应用 使用标准库函数 源代码 原
- c++线性方程组求解源代码 原创
- 一个简单的C++抽签程序
- 数据结构课程设计\\算术表达式求解
- 《The c++ programming language 》的习题答案
- sha256-512加密算法
- NTFS数据恢复的c++类代码
- 矩阵连乘问题C++代码
- 用Socket 实现http协议
- RC4在C++中运行的代码
- c++primerplus第六版源码
- VC++ 串口实现双机互联 包含视窗加代
- C++面向对象程序设计第6版美Walter Sa
- Visual C++ MFC Web 浏览器
- 宇视科技2017C/C++开发笔试题
- c++字典列表
- linux下的C语言POSIX正则表达式头文件和
- C++源代码飞机订票系统
评论
共有 条评论