我有一个将前缀字符串转换为中缀的代码。我用过stl stack。 测试输入:* / ab + -cde
#include<iostream>
#include<stack>
#include<string.h>
#include<stdlib.h>
using namespace std;
int main()
{
stack<char*> s;
char prefix[100],c;
int l,i,flag[27]={0},pos;
char *o1,*o2,*op,temp[10];
cout<<"Prefix expression : ";
cin>>prefix;
l=strlen(prefix);
op=(char *)malloc(sizeof(char)*10);
o1=new char[10];
o2=new char[10];
for(i=l-1;i>=0;i--)
{
if(prefix[i]>=97 && prefix[i]<=122)
{
if(i!=l-1) cout<<s.top()<<endl;
cout<<"Operand"<<endl;
temp[0]=prefix[i];
temp[1]='\0';
strcpy(op,temp);
s.push(op);
}
else
{
cout<<"Operator"<<endl;
cout<<"Top element : "<<s.top()<<endl;
o1=s.top();
strcpy(temp,o1);
s.pop();
cout<<"Top element : "<<s.top()<<endl;
temp[strlen(temp)]=prefix[i];
o2=s.top();
strcat(temp,o2);
s.pop();
temp[strlen(temp)]='\0';
//cout<<o1<<" "<<o2<<endl;
strcpy(op,temp);
s.push(op);
cout<<op<<endl;
}
}
o1=s.top();
s.pop();
cout<<"Evaluated expression is "<<o1<<endl;
return 0;
}
现在o1应该在遇到第一个操作数时存储c,而o2应该存储d。 但我得到的输出如下,
有人可以帮忙吗?
答案 0 :(得分:1)
我在您的代码中看到的问题:
在循环中重复使用op
您已在循环开始前为op
分配了内存。
op=(char *)malloc(sizeof(char)*10);
然后你在for
循环中使用相同的内存。
在if
区块中:
strcpy(op,temp);
s.push(op);
并在else
区块中。
strcpy(op,temp);
s.push(op);
您每次都需要为op
分配内存。
将strcat
与非空终止的字符串一起使用
在else
区块中,您有:
temp[strlen(temp)]=prefix[i];
o2=s.top();
strcat(temp,o2);
这些行中的第一行用temp
替换prefix[i]
的空字符。此时,temp
不是以空字符结尾的字符串。在上面第三行中调用strcat
会导致未定义的行为。
您需要使用以下内容:
char temp2[2] = {0};
temp2[0] = prefix[i];
strcat(temp, temp2);
o2=s.top();
strcat(temp,o2);
混合malloc
和new
混合malloc
和new
并不是导致内存问题的原因,但最好坚持使用new
,因为你在C ++领域。
这是您的程序版本,其中包含修复程序:
#include<iostream>
#include<stack>
#include<string.h>
#include<stdlib.h>
using namespace std;
int main()
{
stack<char*> s;
char prefix[100];
int l,i;
char *o1,*o2,*op,temp1[10],temp2[10];
cout<<"Prefix expression : ";
cin>>prefix;
l=strlen(prefix);
o1=new char[10];
o2=new char[10];
for(i=l-1;i>=0;i--)
{
if(prefix[i]>=97 && prefix[i]<=122)
{
if(i!=l-1) cout<<s.top()<<endl;
cout<<"Operand"<<endl;
temp1[0]=prefix[i];
temp1[1]='\0';
op = new char[10];
strcpy(op,temp1);
s.push(op);
cout<<"Symbol"<<endl;
cout<<"Top element : "<<s.top()<<endl;
}
else
{
cout<<"Operator"<<endl;
cout<<"Top element : "<<s.top()<<endl;
o1=s.top();
strcpy(temp1,o1);
s.pop();
cout<<"Top element : "<<s.top()<<endl;
temp2[0]=prefix[i];
temp2[1]='\0';
strcat(temp1,temp2);
o2=s.top();
strcat(temp1,o2);
s.pop();
op = new char[10];
strcpy(op,temp1);
s.push(op);
cout<<op<<endl;
}
}
o1=s.top();
s.pop();
cout<<"Evaluated expression is "<<o1<<endl;
return 0;
}
<强>更新强>
使用std::string
代替char*
,可以避免为字符串分配和取消分配内存的麻烦。
#include <iostream>
#include <string>
#include <stack>
#include <cstring>
using namespace std;
void test(char prefix[])
{
stack<std::string> s;
int l,i;
char temp[10] = {0};
std::string op;
l = std::strlen(prefix);
for(i=l-1;i>=0;i--)
{
if(prefix[i]>=97 && prefix[i]<=122)
{
if(i!=l-1) cout<<s.top()<<endl;
cout<<"Operand"<<endl;
temp[0]=prefix[i];
s.push(temp);
cout<<"Symbol"<<endl;
cout<<"Top element : "<<s.top()<<endl;
}
else
{
cout<<"Operator"<<endl;
cout<<"Top element : "<<s.top()<<endl;
op = s.top();
s.pop();
cout<<"Top element : "<<s.top()<<endl;
temp[0]=prefix[i];
op += temp;
op += s.top();
s.pop();
s.push(op);
cout<<op<<endl;
}
}
op=s.top();
s.pop();
cout<<"Evaluated expression is "<<op<<endl;
}
int main()
{
char prefix[100];
cout<<"Prefix expression : ";
cin>>prefix;
test(prefix);
return 0;
}