-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmain.cpp
164 lines (119 loc) · 2.4 KB
/
main.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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
//20160510 v1.0
//程序支持逆波兰输入格式如:112 3 * 2 -
#include <iostream>
#include <stdio.h>
#define NUMBER 1
#define OPERATOR 2
#define OTHER 3
#define STACKNUM 100
using namespace std;
// 数据存放栈
int stack_[STACKNUM]={0};
int* sp=stack_;
//全局变量用于存放操作数
char op[100];
//函数声明
void push(int);
int pop();
int ctoi(char*);
void run();
int getop(char*);
//程序入口,支持逆波兰输入格式:“112 3 * 2 -”
int main()
{
run();
return 0;
}
//计算器主程序
void run(){
while(1){
int flag;
//每次读取一个操作数
while ((flag=getop(op))!=0){
//cout<<"flag:"<<flag<<endl;
switch (flag){
case NUMBER:// 如果是数字则转化为int型入栈
{
int m=ctoi(op);
//cout <<m;
push(m);
//cout<<"result:"<<pop()<<endl;
}
break;
case OPERATOR:
{
int a;
switch(op[0]){
case '+':
push(pop()+pop());
break;
case '*':
push(pop()*pop());
break;
case '-':
a=pop();
push(pop()-a);
break;
case '/':
a=pop();
push(pop()/a);
break;
default:
break;
}
}
break;
default:
break;
}
//cout<<"final result:"<<pop()<<endl;
}
cout<<"final result:"<<pop()<<endl;
}
}
//程序支持输入格式如:112 3 * 2 -
//每次把一个操作数读入*s数组,并返回是数还是运算符
int getop (char* s){
char ch;
// while((ch=getchar())!='\n'){
ch=getchar();
s[0]=ch;s[1]='\0';
//cout<<s[0];
//if((s[0]>='0') &&(( s[0]<='9')))
if (isdigit(s[0]))
{
char c;
int i=1;
while ((c=getchar())!=' ')
s[i++]=c;
s[i]='\0';
return NUMBER;
}
if(s[0]==' ')
//cout<<"kong";
return OTHER;
if(s[0]=='\n')
return 0;
else
{
//cout<<"oo"<<endl;
return OPERATOR;
}
}
// char转化为int
int ctoi(char *s){
int i=0;
int r=0;
while(s[i]!='\0')
{
r=r*10+(s[i]-'0');
i++;
}
return r;
}
void push(int a){
*sp++=a;
}
int pop(){
return *--sp;
}