我想寻求帮助来解决我的问题。我有一个作为字符序列的表达式,我想使用堆栈将它分开,我将此表达式拆分为每个操作数和运算符,它们每个都是序列,我想将它推入堆栈。问题是当我在分离后尝试打印表达式时,只有运算符正确显示,但操作数不正确。它们只显示与顶部元素相同的操作数值。我不知道为什么,这是我的代码,请帮我检查一下。非常感谢!
#include "stdio.h"
#include "stdlib.h"
#include "malloc.h"
#include "string.h"
#define SIZE 100
typedef struct Stack{
int top;
char *data[9];
}Stack;
void init(Stack *s){
s->top = 0;
}
void push(Stack *s, char *value){
if(s->top < SIZE)
s->data[s->top++] = value;
else
printf("stack is full");
}
bool isDigit(char s){
if(s>='0' && s<='9')
return true;
return false;
}
void separate(Stack *exp,char *s){
char temp[9];
int n = strlen(s);
int l = 0,size=0;
for(int i = 0;i<n;i++){
if(isDigit(s[i])){
temp[l++]=s[i];
}
else{
if(l!=0){
temp[l]='\0';
push(exp,temp);
l=0;
}
char *c= (char*)malloc(sizeof(char));
sprintf(c,"%c",s[i]);
push(exp,c);
}
}
temp[l]='\0';
push(exp,temp);
}
void main(){
Stack *s = (Stack*)malloc(sizeof(Stack));
init(s);
char expression[100];
printf("Enter your expression, for exp: 2-33/134+8\n");
gets(expression);
separate(s,expression);
int size = s->top;
printf("\nsize = %d",size);
printf("\nElements of stack are");
for(int i = 0;i<size;i++)
printf("\n %s",s->data[i]);
system("pause");
}