|
楼主 |
发表于 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; }
}
|
|