- 修改了下代碼就運行出錯了,怎麼回事?
-
#include<iostream>
using namespace std;
struct list
{
int data; struct list *next;
};
class Stack
{
struct list *ptr;
public:
Stack()
{
ptr=NULL;
}
void push(int x)//進棧成員函數
{
struct list *newnode=new struct list;
newnode->data=x;
newnode->next=ptr;
ptr=newnode;
}
int pop()//出棧成員函數
{
//struct list *top;
int value;
value=ptr->data;
//top=ptr;
ptr=ptr->next;
//delete top;
return value;
}
int empty()
{
if(ptr==NULL)
return 1;
else
return 0;
}
};
class Queue
{
struct list *ptrf,*ptrb;
public:
Queue()
{
ptrf=ptrb=NULL;
}
void enqueue(int x)//進隊成員函數
{
struct list *newnode=new struct list;
newnode->data=x;
newnode->next=NULL;
if(ptrb==NULL)
ptrf=ptrb=newnode;
else
{
ptrb->next=newnode;
ptrb=newnode;
}
}
int dequeue()//出隊成員函數
{
//struct list *tmp;
int value;
value=ptrf->data;
//tmp=ptrf;
ptrf=ptrf->next;
//delete tmp;
return value;
}
};
void main()
{
Stack S;//定義一個棧對象
Queue Q;//定義一個隊列對象
char ch; int e,p,d;
cout<<"輸入數據:";
while((ch=getchar())!='.')
{
S.push(ch);
Q.enqueue(ch);
}
//while(!S.empty()&&S.pop()==Q.dequeue());退棧和出隊,比較是否相同
e=S.empty();
while(e==0)
{
p=S.pop();
d=Q.dequeue();
if(p!=d)
break;
}
if(e==1)
cout<<"輸入的是回文數據."<<endl;
else
cout<<"輸入的不是回文數據."<<endl;
system("pause");
}
最佳回答:
e=S.empty();
while(e==0) //e始終不變,不就是死循環了嗎
{
p=S.pop();
d=Q.dequeue();
if(p!=d)
break;
e=S.empty(); //增加
}