08年9月入学,12年7月毕业,结束了我在软件学院愉快丰富的大学生活。此系列是对四年专业课程学习的回顾,索引参见:http://blog.csdn.net/xiaowei_cqu/article/details/7747205
#ifndef STACK_H #define STACK_H enum Error_code{success,underflow,overflow}; const int stackmax=10; typedef double Stack_entry; class Stack{ public: Stack(); bool empty() const; Error_code pop(); Error_code push(const Stack_entry &item); Error_code top(Stack_entry &item) ; Error_code clear(); private: Stack_entry entry[stackmax]; int count; }; #endifStack.cpp
#include"stack.h" //implemention //Stack() Stack::Stack(){ count=0; } //pop() Error_code Stack::pop(){ Error_code outcome=success; if(count==0) outcome=underflow; else count--; return outcome; } //push() Error_code Stack::push(const Stack_entry &item){ Error_code outcome=success; if(count>=stackmax) outcome=overflow; else entry[count++]=item; return outcome; } //top() Error_code Stack::top(Stack_entry &item){ Error_code outcome=success; if(count==0) outcome=underflow; else item=entry[count-1]; return outcome; } //clear() Error_code Stack::clear(){ count=0; return success; } //empty() bool Stack::empty() const{ bool outcome=true; if(count!=0) outcome=false; return outcome; }caculator.h
#ifndef CALCULATOR_H #define CALCULATOR_H #include"stack.h" class Calculator{ public: //constructor Calculator(); //public function to get command void get_command(); //pubblic funtion to do the command bool do_command(); protected: //As these functions will not be visible to the client //but should be derived classes to access so I declare it as protected functions void PutInNum(); void Add(); void Sub(); void Mul(); void Div(); void ShowResult(); void Clear(); void Quit(); private: //data members char command; Stack numbers; }; #endifcaculator.cpp
#include "calculator.h" #include <iostream> using namespace std; //construction Calculator::Calculator(){ command=' '; } //get_command void Calculator::get_command(){ bool waiting =true; cout<<"Select command and press <Enter>:"; while(waiting){ cin>>command; command=tolower(command); if(command=='?'||command=='='||command=='+'|| command=='-'||command=='*'||command=='/'|| command=='q'||command=='c') waiting=false; else cout<<"Please enter a valid command:"<<endl <<"[?]push to stack [=]print top "<<endl <<"[+][-][*][/] are arithmetic operations"<<endl <<"[c]clean the stack"<<endl <<"[Q] quit"<<endl; } } //do_command bool Calculator::do_command(){ get_command(); switch(command){ case '?': PutInNum(); break; case '+': Add(); break; case '-': Sub(); break; case '*': Mul(); break; case '/': Div(); break; case 'c': Clear(); break; case '=': ShowResult(); break; case 'q': return false; } return true; } //Once enter '?': put the next number into stack void Calculator::PutInNum(){ Stack_entry p; cout<<"Enter a real number: "<<flush; cin>>p; if(numbers.push(p)==overflow) cout<<"Warning:Stack full,lost number"<<endl; } //Once enter '+' : Add the numbers in the stack void Calculator::Add(){ Stack_entry p,q; if(numbers.top(p)==underflow) cout<<"Stack empty"<<endl; else{ numbers.top(p); numbers.pop(); if(numbers.top(q)==underflow){ cout<<"Stack has just one entry"<<endl; numbers.push(p); } else{ numbers.pop(); if(numbers.push(p+q)==overflow) cout<<"Warning:Stack full,lost result"<<endl; } } } //Once enter '-': Subtract the numbers in the stack void Calculator::Sub(){ Stack_entry p,q; if(numbers.top(p)==underflow) cout<<"Stack empty"<<endl; else{ numbers.top(p); numbers.pop(); if(numbers.top(q)==underflow){ cout<<"Stack has just one entry"<<endl; numbers.push(p); } else{ numbers.pop(); if(numbers.push(q-p)==overflow) cout<<"Warning:Stack full,lost result"<<endl; } } } //Once enter'*': Multiply the numbers in the stack void Calculator::Mul(){ Stack_entry p,q; if(numbers.top(p)==underflow) cout<<"Stack empty"<<endl; else{ numbers.top(p); numbers.pop(); if(numbers.top(q)==underflow){ cout<<"Stack has just one entry"<<endl; numbers.push(p); } else{ numbers.pop(); if(numbers.push(p*q)==overflow) cout<<"Warning:Stack full,lost result"<<endl; } } } //Once enter '/': Divide the numbers in the stack void Calculator::Div(){ Stack_entry p,q; if(numbers.top(p)==underflow) cout<<"Stack empty"<<endl; else{ numbers.top(p); numbers.pop(); if(p==0){ cout<<"Bed command! The second number is 0 and cannot finishi divide command!"<<endl; } else if(numbers.top(q)==underflow){ cout<<"Stack has just one entry"<<endl; numbers.push(p); } else{ numbers.pop(); if(numbers.push(q/p)==overflow) cout<<"Warning:Stack full,lost result"<<endl; } } } //Once enter '=':Show the result of least command void Calculator::ShowResult(){ Stack_entry p; if(numbers.top(p)==underflow) cout<<"Stack empty"<<endl; else cout<<p<<endl; } //Once enter 'q':Stop the calculation void Calculator::Quit(){ cout<<"Calculation finished!"<<endl; } //Once enter 'c':Clear the stack void Calculator::Clear(){ numbers.clear(); }