鱼C论坛

 找回密码
 立即注册
查看: 1556|回复: 2

[技术交流] do-while的一个bug

[复制链接]
发表于 2016-1-27 22:43:45 | 显示全部楼层 |阅读模式

马上注册,结交更多好友,享用更多功能^_^

您需要 登录 才可以下载或查看,没有账号?立即注册

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


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

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

struct MENU
{
        char name[NAME];
        char phonenum[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;
        }
}
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

 楼主| 发表于 2016-1-28 11:07:07 | 显示全部楼层
之前的代码有点儿小问题,修复了一下,

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

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

struct MENU
{
        char name[NAME];
        char phonenum[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]=='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;        }
}
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2016-2-8 19:04:06 | 显示全部楼层
回复下, 有空测试
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

小黑屋|手机版|Archiver|鱼C工作室 ( 粤ICP备18085999号-1 | 粤公网安备 44051102000585号)

GMT+8, 2024-11-26 18:34

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

快速回复 返回顶部 返回列表