程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 更多編程語言 >> 編程綜合問答 >> 編程-修改了下代碼就運行出錯了,怎麼回事?

編程-修改了下代碼就運行出錯了,怎麼回事?

編輯:編程綜合問答
修改了下代碼就運行出錯了,怎麼回事?
 #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(); //增加
    }
  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved