老师 发表于 2016-1-27 22:43:45

do-while的一个bug

问题已经在代码的注释中,大家可以编译运行下。
多多交流,一起进步哈。(注意共色部分)


/*功能:用栈的形式存储通讯录,包括姓名和电话*/

#include <stdio.h>
#include <stdlib.h>
#define NAME 7
#define PHONENUM 12

struct MENU
{
        char name;
        char phonenum;
        struct MENU *fpmenu;
}menu,*sp=&menu;

void push();
void pop();

int main()
{
        char ch;

        printf("a 入栈\n");
        printf("b 出栈\n");
        printf("c 退出\n");

        sp->fpmenu=(struct MENU *)NULL;

        scanf("%c",&ch);
        getchar();

        while(1)
        {
                switch(ch)
                {
                        case 'a':push();break;
                        case 'b':pop();break;
                        case 'c':exit(1);
                }
        }

        return 0;
}

void push()
{
        struct MENU *temp=sp;

       
        printf("请输入\n");
        while(1)
        {
                scanf("%s %s",sp->name,sp->phonenum);
                if(sp->name=="0")/*退出机制*/
                {
                        break;
                }
                system("cls");
                do
                {
                        printf("%s\n(%s)\n",temp->name,temp->phonenum);
                        temp=temp->fpmenu;
                }while(temp->fpmenu);/*在此之前的代码执行都是正常的,就是到了这里会出错,用while就不会出现这样的情况,这是为什么呢?*/
                temp=(struct MENU *)malloc(sizeof(struct MENU));
                if(temp==(struct MENU *)NULL)
                {
                        printf("程序错误\n");
                        exit(1);
                }
                temp->fpmenu=sp;
                sp=temp;
        }
        sp=sp->fpmenu;/*当name输入"0"时,实际上数多了一个MENU的*/
        free(temp);
}

void pop()
{
        struct MENU *temp=sp;
        char ch='a';

        while(ch!='0')/*退出机制是ch为'0'*/
        {
                do
                {
                        printf("%s\n(%s)\n",temp->name,temp->phonenum);
                        temp=temp->fpmenu;
                }while(temp->fpmenu);
                scanf("%c",&ch);
                temp=sp;
                sp=sp->fpmenu;
                free(temp);
                temp=sp;
        }
}

老师 发表于 2016-1-28 11:07:07

之前的代码有点儿小问题,修复了一下,

/*功能:用栈的形式存储通讯录,包括姓名和电话*/

#include <stdio.h>
#include <stdlib.h>
#define NAME 7
#define PHONENUM 12

struct MENU
{
        char name;
        char phonenum;
        struct MENU *fpmenu;
}menu,*sp=&menu;

void push();
void pop();

int main()
{
        char ch;

        printf("a 入栈\n");
        printf("b 出栈\n");
        printf("c 退出\n");

        sp->fpmenu=(struct MENU *)NULL;

        system("cls");

        while(1)
        {
                printf("a入栈\n");
                printf("b出栈\n");
                printf("c退出\n");
                scanf("%c",&ch);
                switch(ch)
                {
                        case 'a':push();break;
                        case 'b':pop();break;
                        case 'c':exit(1);
                }
        }

        return 0;
}

void push()
{
        struct MENU *temp=sp;

       
        printf("请输入\n");
        while(1)
        {
                scanf("%s %s",sp->name,sp->phonenum);
                getchar();
                if((*sp).phonenum=='0')/*退出机制*/
                {
                        sp=sp->fpmenu;/*当name输入"0"时,实际上数多了一个MENU的*/
                        free(temp);
                        return 0;
                }
                system("cls");
                while(1)
                {
                        printf("%s\n(%s)\n",temp->name,temp->phonenum);
                        temp=temp->fpmenu;
                        if(temp==(struct MENU *)NULL)
                        {
                                break;
                        }
                }
                temp=(struct MENU *)malloc(sizeof(struct MENU));
                if(temp==(struct MENU *)NULL)
                {
                        printf("程序错误\n");
                        exit(1);
                }
                temp->fpmenu=sp;
                sp=temp;
        }
       
}

void pop()
{
        struct MENU *temp=sp;
        char ch='a';

        while(ch!='0')/*退出机制是ch为'0'*/
        {
                system("cls");
                while(1)
                {
                        printf("%s\n(%s)\n",temp->name,temp->phonenum);
                        temp=temp->fpmenu;
                        if(temp==(struct MENU *)NULL)
                        {
                                break;
                        }
                }
                scanf("%c",&ch);
                getchar();
                temp=sp;
                sp=sp->fpmenu;
                free(temp);
                temp=sp;        }
}

purplenight 发表于 2016-2-8 19:04:06

回复下, 有空测试
页: [1]
查看完整版本: do-while的一个bug