gpt4 book ai didi

c - 中缀到后缀

转载 作者:行者123 更新时间:2023-11-30 14:29:58 25 4
gpt4 key购买 nike

我一直在尝试解决这个问题。我的任务是制作一个基本计算器。

为此,我需要 postfix 中的说明。我在网上找到了一些代码,该代码有效但使用了 gets()。

我尝试替换 gets... 但程序不再工作。这是代码,我希望有人能找到错误(使用 2+4 作为输入,它读取并识别 2 作为数字,然后 + 作为运算符,然后 4 作为数字......然后陷入困境沿线循环某处)

需要明确的是,使用这段代码对于我的作业来说是公平的,只要我引用它作为引用(因为它只是一小部分)。

#include <stdio.h>
#include <string.h>
#include <ctype.h>

#define MAX 10
#define EMPTY -1

struct stack
{
char data[MAX];
int top;
};

int isempty(struct stack *s)
{
printf("isempty\n");
return (s->top == EMPTY) ? 1 : 0;
}

void emptystack(struct stack* s)
{
printf("emptystack\n");
s->top=EMPTY;
}

void push(struct stack* s,int item)
{
printf("push\n");
if(s->top == (MAX-1))
{
printf("\nSTACK FULL");
}
else
{
printf("add to stack\n");
++s->top;
s->data[s->top]=item;
}
}

char pop(struct stack* s)
{
printf("pop\n");
char ret=(char)EMPTY;
if(!isempty(s))
{
ret= s->data[s->top];
--s->top;
}
return ret;
}

void display(struct stack s)
{
printf("display\n");
while(s.top != EMPTY)
{
printf("not empty\n");
printf("\n%d",s.data[s.top]);
s.top--;
}
}

int isoperator(char e)
{
getchar();
printf("isoperator\n");
if(e == '+' || e == '-' || e == '*' || e == '/' || e == '%')
return 1;
else
return 0;
}


int priority(char e)
{
printf("priority\n");
int pri = 0;

if(e == '*' || e == '/' || e =='%')
pri = 2;
else
{
if(e == '+' || e == '-')
pri = 1;
}
return pri;
}

void infix2postfix(char* infix, char * postfix, int insertspace)
{
printf("in infix2postfix\n");
char *i,*p;
struct stack X;
char n1;
emptystack(&X);
i = &infix[0];
p = &postfix[0];

while(*i)
{
while(*i == ' ' || *i == '\t')
{
i++;
}

if( isdigit(*i) || isalpha(*i) )
{
printf("is digit.\n");
while( isdigit(*i) || isalpha(*i))
{
*p = *i;
p++;
i++;
}
/*SPACE CODE*/
if(insertspace)
{
*p = ' ';
p++;
}
/*END SPACE CODE*/
}

if( *i == '(' )
{
push(&X,*i);
i++;
}

if( *i == ')')
{
n1 = pop(&X);
while( n1 != '(' )
{
*p = n1;
p++;
/*SPACE CODE*/
if(insertspace)
{
*p = ' ';
p++;
}
/*END SPACE CODE*/
n1 = pop(&X);
}
i++;
}

if( isoperator(*i) )
{
if(isempty(&X))
push(&X,*i);
else
{
n1 = pop(&X);
while(priority(n1) >= priority(*i))
{
*p = n1;
p++;
/*SPACE CODE*/
if(insertspace)
{
*p = ' ';
p++;
}
/*END SPACE CODE*/
n1 = pop(&X);
}
push(&X,n1);
push(&X,*i);
}
i++;
}
}
while(!isempty(&X))
{
n1 = pop(&X);
*p = n1;
p++;
/*SPACE CODE*/
if(insertspace)
{
*p = ' ';
p++;
}
/*END SPACE CODE*/
}
*p = '\0';
}

int main()
{
char in[50],post[50],temp[50];

strcpy(&post[0],"");
printf("Enter Infix Expression : ");
fflush(stdin);
fgets(in,50,stdin);
printf("%s",in);
infix2postfix(&in[0],&post[0],1);
printf("Postfix Expression is : %s\n",&post[0]);

return 0;
}

感谢您的帮助,我真的很感激:)。

最佳答案

fgets() 当字符串到达​​ 1 时,会在字符串中包含一个换行符,因此您得到的字符串为“2+4\n”。将 while (*i) 替换为 while (*i && *i != '\n') 并查看结果。

关于c - 中缀到后缀,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3991994/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com