• 新增:

    • 计算类(拥有计算功能)

      • 采用符号优先级计算方法

      • 对符号不匹配的如 -2 ,自动补为 0-2

    • 计算内核信息

      • 输入 -a 可以显示等式与结果

      • 输入 -p 可以显示计算逐步过程

        • 传入 -a 参数 且 传入 -p 参数

        • 传入 -a 参数 且 不传入 -p 参数


  • 规定并非万无一失,但暂未发现有悖原意的bug。

  • 如有发现bug,但求一知,万分感谢。


//
// main.cpp
// Calculator
//
// Created by admin on 16/2/25.
// Copyright © 2016年 YooRarely. All rights reserved.
// #include <iostream>
#include <queue>
#include <stack>
#include <string>
#include <cmath>
#include <sstream> using namespace std; class Scan{ private:
bool err; // 输入是否出错 public:
// 字符是否为运算符
bool isOper(char c){ if ( c == '+' || c == '-' || c == '*' || c == '/' ) return true;
return false;
}
// 字符是否为数字
bool isCount(char c){ if (c>='0' && c<='9') return true;
return false;
} queue <string> ToStringQueue(string input){
err=false;
queue <string > a;
int sum_kuohao = 0; // 当输入未出错时遍历输入字符串
for (int i = 0; i < input.size() && ! err; i ++){ string s; // 如果为 运算符 或 括号
if ( isOper( input[i] ) || input[i] == '(' || input[i] == ')' ) { s = input[i]; if (!a.empty()){ string k=a.back(); if (input[i] == '(' && ( isCount( k[0] ) || k[0] == ')' ) ) err = true;
if ( isOper( k[0] ) && input[i] != '(' && input[i] != '-' ) err = true; } if (input[i] == '(') sum_kuohao ++;
if (input[i] == ')') sum_kuohao --;
if ( sum_kuohao < 0 ) err = true; }// 否则 如果为数字
else if ( isCount( input[i] ) ){ bool dian=false; while ( ! err && i < input.size() ){
if ( isCount( input[i] ) || input[i] == '.') s=s+input[i];
if ( input[i] == '.' ) { if ( dian ) err = true;
dian = true; } if ( isOper( input[i+1] ) || input[i+1] == '(' || input[i+1] == ')') break;
i++;
} if (dian && s[ s.size() - 1 ] == '.') err = true;
if ( s.size() > 10 ) err = true; }
// 入队
a.push(s);
s="";
}
if ( sum_kuohao ) err = true; if ( ! err && ! a.empty() ){ string k = a.front();
if ( isOper( k[0] ) && k[0] != '-' ) err = true;
k = a.back();
if ( isOper( k[0] ) ) err = true; }
if ( err ) { while ( ! a.empty() ) a.pop();
a.push("Error Input !"); }
return a;
}
}; class Print{
public:
void PrintStringQueue(queue<string> a){ while ( ! a.empty() ) { cout << a.front() << endl;
a.pop();
}
}
}; class Calculate{
private:
bool print;
int tried (stack <char> &oper,stack <int> &important,stack <double> &count, int k){ while ( ! important.empty() && k <= important.top()){ double amazing = count.top();
count.pop(); switch (oper.top()) {
case '+':
if (print) cout<<count.top()<<"+"<<amazing;
count.top() += amazing;
if (print) cout<<"="<<count.top()<<endl;
break;
case '-':
if (print) cout<<count.top()<<"-"<<amazing;
count.top() -= amazing;
if (print) cout<<"="<<count.top()<<endl;
break;
case '*':
if (print) cout<<count.top()<<"*"<<amazing;
count.top() *= amazing;
if (print) cout<<"="<<count.top()<<endl;
break;
case '/':
if (amazing == 0) { return -1;}
if (print) cout<<count.top()<<"/"<<amazing;
count.top() /= amazing;
if (print) cout<<"="<<count.top()<<endl;
break;
} oper.pop();
important.pop();
}
return 0;
} public:
// 字符是否为运算符
bool isOper(char c){
if ( c == '+' || c == '-' || c == '*' || c == '/' ) return true;
return false;
}
// 字符是否为数字
bool isCount(char c){
if (c>='0' && c<='9') return true;
return false;
} double getAns(queue<string> a,bool p){ stack <char> oper;
stack <int> important;
stack <double> count;
int k=0;
print=p; while ( ! a.empty() ){ if (a.front()[0] == '(') k += 2;
if (a.front()[0] == ')') k -= 2; if (isOper( a.front()[0] )){ if ( oper.size() == count.size() ){ count.push(0);
important.push(10000); }
else if ( a.front()[0] == '*' || a.front()[0] == '/'){ if ( tried(oper, important, count, k+1) == -1 ) return 0.000000;
important.push(k+1); }
else{ if ( tried(oper, important, count, k) == -1 ) return 0.000000;
important.push(k); }
oper.push( a.front()[0] );
}
if (isCount( a.front()[0] )){ count.push( atof( a.front().c_str() ) ); } a.pop();
} if ( ! oper.empty() )
if ( tried(oper, important, count, -1) == -1 ) return 0.000000;
return count.top();
} }; int main(int argc, const char * argv[]) {
string input;
bool p,a;
double ans;
int i;
Scan scan;
Print print;
Calculate Calculate; p=false;
a=false;
i=1; // getline(cin,input); if (argc<2) return 0; input=argv[i]; while (1){ if (input=="-a") {
input=argv[++i];
a=true;
continue;
} if (input=="-p"){
input=argv[++i];
p=true;
continue;
} break;
} // print.PrintStringQueue( scan.ToStringQueue(input) ); ans=Calculate.getAns( scan.ToStringQueue(input) , p); if (a) cout<<input<<"=";
cout<<ans<<endl;
return 0;
}

Calculator 2的更多相关文章

  1. [LeetCode] Basic Calculator II 基本计算器之二

    Implement a basic calculator to evaluate a simple expression string. The expression string contains ...

  2. [LeetCode] Basic Calculator 基本计算器

    Implement a basic calculator to evaluate a simple expression string. The expression string may conta ...

  3. Basic Calculator II

    Implement a basic calculator to evaluate a simple expression string. The expression string contains ...

  4. Windows Universal 应用 – Tip Calculator

    声明 以下内容取材于 Bob Tabor 的课程<Windows Phone 8.1 Development for Absolute Beginners>,链接地址为:http://ww ...

  5. Calculator(1.5)

    Calculator(1.5) Github链接 ps.负数的处理未完成 解题过程中遇到的困难和解决 <stack>的使用: 认真研究了栈,基本上掌握了用法,与<queue>的 ...

  6. Calculator(1.0)

    Calculator(1.0) Github链接 解题过程中遇到的困难 对于c++中类和对象的使用不够明确,看了c++的视频教程学会了用类和对象来写程序. 不会使用<queue>,在网上查 ...

  7. 数据结构与算法(1)支线任务2——Basic Calculator

    题目:https://leetcode.com/problems/basic-calculator/ Implement a basic calculator to evaluate a simple ...

  8. calculator

    #include <stdio.h> #include <stdlib.h> typedef enum { FALSE = , TRUE }BOOL; void calcula ...

  9. Basic Calculator

    本博客介绍leetcode上的一道不难,但是比较经典的算法题. 题目如下: Implement a basic calculator to evaluate a simple expression s ...

  10. Matrix Calculator

    表达式分析+矩阵+计算器+寄存器=矩阵计算器 怎么想起来搞这个呢.. //刚看龙书兴致勃勃要搞表达式分析 这个寄存器比较简陋,26字母+4缓存,//字母不分大小写 当然,不只能算矩阵,还能算数= = ...

随机推荐

  1. JQ中的选择器children()和find()区别

    1:children及find方法都用是用来获得element的子elements的,两者都不会返回 text node,就像大多数的jQuery方法一样. 2:children方法获得的仅仅是元素一 ...

  2. window安装ubuntu系统

  3. 关于一个flask的服务接口实战(flask-migrate,flask-script,SQLAlchemy)

    前言 最近接到一个接收前端请求的需求,需要使用python编写,之前没有写过python,很多技术没有用过,在这里做一个学习记录,如有错误,请不了赐教. Flask Api文档管理 使用Falsk A ...

  4. python中函数参数的引用方式

    值传递和引用传递时C++中的概念,在python中函数参数的传递是变量指向的对象的物理内存地址!!! python不允许程序员选择采用传值还是传引用.Python参数传递采用的肯定是“传对象引用”的方 ...

  5. kafka zk常用命令

    1  创建topic: kafka-topics.sh --create --zookeeper 3.3.3.3:2181 --replication-factor 1 --partitions 3 ...

  6. netfilter 学习摘要

    netfilter 子系入口在L3,完成后把数据包发往L4 netfilter 主要功能: 数据包选择(iptables) 数据包过滤 网络地址转换(NAT) 数据包操纵(在路由选择之前或之后修改数据 ...

  7. go内建容器-切片

    1.基础定义 看到'切片'二字,满脸懵逼.切的啥?用的什么刀法切?得到的切片有什么特点?可以对切片进行什么操作? 先看怎么得到切片,也就是前两个问题.切片的底层是数组,所以切片切的是数组:切的时候采用 ...

  8. 成都Uber优步司机奖励政策(3月23日)

    滴快车单单2.5倍,注册地址:http://www.udache.com/ 如何注册Uber司机(全国版最新最详细注册流程)/月入2万/不用抢单:http://www.cnblogs.com/mfry ...

  9. 学习Drupal一个容易被忽视的问题

    刚刚修复了一个问题,一个非常小的问题,但我花了2-3小时才查明原因并修复. 总结下来我忽视了一个非常常见的问题或者没有养成一个好的习惯. 问题现象是:论坛发帖,只有editor以上权限的人可以发帖,也 ...

  10. ogg的安装配置 配置双向同步(含DDL)

    第一部分 先配置单向同步(含DDL) 一 源端安装GoldenGate 创建用户 创建目录 mkdir -p /opt/ogg chmod -R 777 /opt/ogg chown -R oracl ...