c-计算后缀表达式时不需要的符号结果



我正在尝试制作一个C程序来评估后缀表达式,当这样做时,屏幕上会为输入45+打印一个不需要的符号。附言:请告诉我这个错误(除了gets(),我现在正在学习如何使用fgets())

// to Evaluate a postfix expression
#include<stdio.h>
#include<conio.h>
int is_operator(char);
void answer();
char stack[100];
int top =-1;
void push(char);
char pop();
void main()
{
char postfix[100],item;
int i=0;
clrscr();
printf("Enter Postfix Expression");
gets(postfix);
while(postfix[i]!='')
    {
    item=postfix[i];
    if(is_operator(item)==2)
        {
        push(item);
        }
    if(is_operator(item)==1)
        {
        char op;
        int n1,n2,n3;
        op=item;
        n1=pop();
        n2=pop();
        switch(op)
        {
            case '+':
            n3=n1+n2;
            case '-':
            n3=n1-n2;
            case '*':
            n3=n1*n2;
            case '/':
            n3=n1/n2;
        }
        push(n3);
        }
    i++;
    }//end while
answer();
getch();
}
void push(char c)
{
top++;
stack[top]=c;
}
char pop()
{
char c;
c=stack[top];
top--;
return(c);
}
int is_operator(char i)
{
char ch=i;
if(ch=='+'||ch=='-'||ch=='*'||ch=='/')
    {
    return(1);
    }
else
    {
    return(2);
    }
}
void answer()
{
char ans;
ans=stack[top];
printf("Answere is %c",ans);
}

您的代码中有很多错误。请尝试正确键入强制转换。

通过评论来理解错误。

通过这个来理解字符指针和数组。

//评估后缀表达式

#include<stdio.h>

int is_operator(char);
void answer();
int stack[100];//Use integer array since operands are integer
int top =-1;
void push(int);//Arguments changed to integer type since the stack is integer 
int pop(); //Return type to integer
void main()
{
char* postfix;//Use character pointer for iterating through loop smoothly
 int item;
int i=0;
printf("Enter Postfix Expression");
gets(postfix);
char c;
while(*postfix!='')
    {
    c=*postfix;
    if(is_operator(c)==2)
        {
        push((c-'0')); //Converting char to int before pushing it into the stack
        }
    if(is_operator(c)==1)
        {

        char op;
        int n1,n2,n3;
        op=*postfix;
        n1=pop();
        n2=pop();
        switch(op)
        {
            case '+':
            n3=n1+n2;
            break;
            case '-':
            n3=n1-n2;
            break;
            case '*':
            n3=n1*n2;
            break;
            case '/':
            n3=n1/n2;
            break;
        }
        push(n3);
        }
    postfix++;
    }//end while
answer();
}
void push(int c)
{
top++;
stack[top]=c;
}
int pop()
{
int c;
c=stack[top];
top--;
return(c);
}
int is_operator(char i)
{
char ch=i;
if(ch=='+'||ch=='-'||ch=='*'||ch=='/')
    {
    return(1);
    }
else
    {
    return(2);
    }
}
void answer()
{
char ans;
ans=stack[top];
printf("Answere is %d",ans);
}  

我希望它有帮助。。。。

我在您的代码中看到的问题是:您的switch()在单个case子句上缺少break语句(default大小写可能也不错);当你把非运算符(也就是个位数)推到堆栈上时,你把它们作为字符码推,而不是把它们转换成数字,所以数学没有意义;您没有正确处理减法和除法等非社区运算的顺序(使用Unix dc命令作为比较工具);最后,不要重新发明布尔型。以下是对您的代码进行了上述更改和一些样式调整的返工:

// Evaluate a postfix expression
#include <ctype.h>
#include <stdio.h>
#include <stdbool.h>
char stack[100];
int top = -1;
void push(char);
char pop(void);
bool is_operator(char);
void answer(void);
void push(char c)
{
    stack[++top] = c;
}
char pop()
{
    return stack[top--];
}
bool is_operator(char op)
{
    return (op == '+' || op == '-' || op == '*' || op == '/');
}
void answer()
{
    printf("Answer is %dn", stack[top]);
}
int main()
{
    char item, postfix[100];
    int i = 0;
    printf("Enter Postfix Expression: ");
    gets(postfix);
    while ((item = postfix[i++]) != '')
    {
        if (is_operator(item))
        {
            char n1 = pop();
            char n2 = pop();
            char n3 = 0;
            switch (item)
            {
                case '+':
                    n3 = n1 + n2;
                    break;
                case '-':
                    n3 = n2 - n1;
                    break;
                case '*':
                    n3 = n1 * n2;
                    break;
                case '/':
                    n3 = n2 / n1;
                    break;
            }
            push(n3);
        } else if (isdigit(item)) {
            push(item - '0');
        }
    } // end while
    answer();
    return 0;
}

示例(请注意,此评估器仅对个位数进行操作):

> ./a.out
Enter Postfix Expression: 6 4 - 7 * 1 +
Answer is 15
> dc
6 4 - 7 * 1 + p
15

最新更新