从Infix转换为Postfix并评估Postfix表示法

时间:2014-07-04 18:35:07

标签: c stack postfix-notation infix-notation

我正在编写一个读取Infix表示法的程序,将其转换为Postfix,然后评估该Postfix。这是我的计划:

#include<stdio.h> 
#include <ctype.h>
#define SIZE 50            /* Size of Stack */

char s[SIZE];
int top = -1; /* Global declarations */

push(char elem) { /* Function for PUSH operation */
 s[++top] = elem;
}

char pop() { /* Function for POP operation */
 return (s[top--]);
}

int pr(char elem) { /* Function for precedence */
 switch (elem) {
 case '#':
  return 0;
 case '(':
   return 1;
 case '+':
 case '-':
  return 2;
 case '*':
 case '/':
  return 3;
 }
}
pushit(int ele){                       /* Function for PUSH operation */
 s[++top]=ele;
}

int popit(){                      /* Function for POP operation */
 return(s[top--]);
}

 main() { /* Main Program */
  char infx[50], pofx[50], ch, elem;
 int i = 0, k = 0, op1, op2,ele;
 printf("\n\nRead the Infix Expression   ");
 scanf("%s", infx);
 push('#');
 while ((ch = infx[i++]) != '\0') {
  if (ch == '(')
   push(ch);
  else if (isalnum(ch))
   pofx[k++] = ch;
  else if (ch == ')') {
   while (s[top] != '(')
    pofx[k++] = pop();
   elem = pop(); /* Remove ( */
  } else { /* Operator */
   while (pr(s[top]) >= pr(ch))
    pofx[k++] = pop();
   push(ch);
  }
 }
  while (s[top] != '#') /* Pop from stack till empty */
  pofx[k++] = pop();
 pofx[k] = '\0'; /* Make pofx as valid string */
 printf("\n\nGiven Infix Expn: %s  Postfix Expn: %s\n", infx, pofx);

 while( (ch=pofx[i++]) != '\0')
 {
  if(isdigit(ch)) pushit(ch-'0'); /* Push the operand */
  else
  {        /* Operator,pop two  operands */
   op2=popit();
   op1=popit();
   switch(ch)
   {
   case '+':pushit(op1+op2);break;
   case '-':pushit(op1-op2);break;
   case '*':pushit(op1*op2);break;
   case '/':pushit(op1/op2);break;
   }
  }
 }
 printf("\n Given Postfix Expn: %s\n",pofx);
 printf("\n Result after Evaluation: %d\n",s[top]);
}

程序将我的Infix正确转换为Postfix表示法。但是,对于评估部分,它总是返回0。

另外,从Infix转换为Postfix时,我想在每一步打印结果,我该怎么做?

2 个答案:

答案 0 :(得分:0)

一个问题是您将s中的值存储为每个元素存储1个字节的char,然后尝试将整数推送到s中:

pushit (int ele) {      /* Function for PUSH operation */
    s[++top] = ele;
}

s中混合int / char后,您尝试阅读:

op2=popit();
op1=popit();

尝试从int创建popit()popit()只是一个1字节char。因此,op1op2无法获得您想要的值:

int popit(){                      /* Function for POP operation */
return(s[top--]);
}

如果希望得到整数,则需要查看存储整数的方式。最后,看看你的警告。至少应使用-Wall选项进行构建。它揭示了:

popit.c:8:1: warning: return type defaults to ‘int’
popit.c:32:1: warning: return type defaults to ‘int’
popit.c:41:1: warning: return type defaults to ‘int’

这可能是你的意图。但是,您的代码应该在没有警告的情况下构建,以帮助确保它正在执行您认为正在执行的操作。

答案 1 :(得分:-2)

在线号码9 输入:

{{1}}

&安培;行号32 输入:

{{1}}