C //练习 4-8 假定最多只压回一个字符。请相应地修改getch与ungetch这两个函数。

C程序设计语言 (第二版) 练习 4-8

练习 4-8 假定最多只压回一个字符。请相应地修改getch与ungetch这两个函数。

注意:代码在win32控制台运行,在不同的IDE环境下,有部分可能需要变更。
IDE工具:Visual Studio 2010

 

代码块:
#include <stdio.h>
#include <stdlib.h>
#include <ctype.h>
#include <math.h>
#include <string.h>

#define MAXOP 100
#define NUMBER '0'
#define MAXVAL 100
#define BUFSIZE 100
#define VAR '1'

int sp = 0;
double val[MAXVAL];

//char buf[BUFSIZE];
int bufp = 0;
char buf = 0;

double variable[26];

void push(double f){
   
	if(sp < MAXVAL){
   
		val[sp++] = f;
	}
	else{
   
		printf("Error! Stack Full, can't push %g\n", f);
	}
}

double pop(void){
   
	if(sp > 0){
   
		return val[--sp];
	}
	else{
   
		printf("Error! Stack Empty!\n");
		return 0.0;
	}
}

void printTop(void){
   
	if(sp > 0){
   
		printf("Top: %g\n", val[sp-1]);
	}
	else{
   
		printf("Error! Stack Empty!\n");
	}
}

void topCopy(void){
   
	if(sp > 0 || sp < MAXVAL){
   
		val[sp++] = val[sp-1];
	}
	else if(sp <= 0){
   
		printf("Error! Stack Empty!\n");
	}
	else{
   
		printf("Error! Stack Full!\n");
	}
}

void swapTop(void){
   
	double temp;
	if(sp >= 2){
   
		temp = val[sp-1];
		val[sp-1] = val[sp-2];
		val[sp-2] = temp;
	}
	else{
   
		printf("Can't Swap Top Number!\n");
	}
}

void emptyStack(void){
   
	for(int i = sp - 1; i >= 0; i--){
   
		val[i] = 0;
	}
	sp = 0;
}

int getch(void){
   
	int c;
	c = (buf != 0) ? buf : getchar();
	buf = 0;
	return c;
}

void ungetch(int c){
   
	if(buf != 0){
   
		printf("Ungetch! Too many characters!\n");
	}
	else{
   
		buf = c;
	}
}

void ungets(char s[]){
   
	int len = strlen(s);
	for(int i = 0; i < len; i++){
   
		ungetch(s[i]);
	}
}

int getop(char s[]){
   
	int i, c;

	while((s[0] = c = getch()) == ' ' || c == '\t')
		;
	s[1] = '\0';

	if(c == 's'){
   
		int next1 = getch();
		int next2 = getch();
		if(next1 == 'i' && next2 == 'n'){
   
			return c;
		}
	}

	if(c == 'e'){
   
		int next1 = getch();
		int next2 = getch();
		if(next1 == 'x' && next2 == 'p'){
   
			return c;
		}
	}

	if(c == 'p'){
   
		int next1 = getch();
		int next2 = getch();
		if(next1 == 'o' && next2 == 'w'){
   
			return c;
		}
	}

	if(c >= 'a' && c <= 'z'){
   
		int next = getch();
		if(next == ' '){
   
			ungetch(next);
			return VAR;
		}
	}
	
	if(c == '-'){
   
		int next = getch();
		if(!isdigit(next) && next != '.'){
   
			ungetch(next);
			return c;
		}
		s[1] = c = next;
		i = 1;
	}
	else{
   
		i = 0;
		if(!isdigit(c) && c != '.'){
   
			return c;
		}
	}

	if(isdigit(c)){
   
		while(isdigit(s[++i] = c = getch()))
			;
	}
	if(c == '.'){
   
		while(isdigit(s[++i] = c = getch()))
			;
	}
	s[i] = '\0';
	if(c != EOF){
   
		ungetch(c);
	}
	return NUMBER;
}

int main(){
   
	int type;
	double op2;
	char s[MAXOP];

	while((type = getop(s)) != EOF){
   
		switch(type){
   
		case NUMBER:
			push(atof(s));
			break;
		case '+':
			push(pop() + pop());
			break;
		case '*':
			push(pop() * pop());
			break;
		case '-':
			op2 = pop();
			push(pop() - op2);
			break;
		case '/':
			op2 = pop();
			if(op2 != 0.0){
   
				push(pop() / op2);
			}
			else{
   
				printf("Error! Zero Divisor!\n");
			}
			break;
		case '%':
			op2 = pop();
			push((int)pop() % (int)op2);
			break;
		case 's':
			op2 = pop();
			push(sin(op2));
			break;
		case 'e':
			op2 = pop();
			push(exp(op2));
			break;
		case 'p':
			op2 = pop();
			push(pow(pop(), op2));
			break;
		case VAR:
			variable[s[0] - 'a'] = pop();
			push(variable[s[0] - 'a']);
			printf("%c = %lf\n", s[0], variable[s[0] - 'a']);
			break;
		case '\n':
			printf("\t%.8g\n", pop());
			break;
		default:
			printf("Error! Unknown Command %s\n", s);
			break;
		}
	}

	system("pause");
	return 0;
}

相关推荐

最近更新

  1. TCP协议是安全的吗?

    2024-01-13 01:12:01       16 阅读
  2. 阿里云服务器执行yum,一直下载docker-ce-stable失败

    2024-01-13 01:12:01       16 阅读
  3. 【Python教程】压缩PDF文件大小

    2024-01-13 01:12:01       15 阅读
  4. 通过文章id递归查询所有评论(xml)

    2024-01-13 01:12:01       18 阅读

热门阅读

  1. 微信小程序案例-03翻页时钟-3

    2024-01-13 01:12:01       42 阅读
  2. expdp时报错ORA-31693&ORA-02354&ORA-01555

    2024-01-13 01:12:01       34 阅读
  3. 【web安全】弱口令,以及不同领域的弱口令爆破

    2024-01-13 01:12:01       41 阅读
  4. autox.js嘎嘎牛p的悬浮窗模板

    2024-01-13 01:12:01       39 阅读
  5. 4 微信小程序

    2024-01-13 01:12:01       33 阅读
  6. 深入理解区间合并:让数字之间的故事更加有序

    2024-01-13 01:12:01       34 阅读
  7. linux系统nginx工具的一些应用

    2024-01-13 01:12:01       34 阅读
  8. C# 快速模指数运算 快速求余运算

    2024-01-13 01:12:01       34 阅读