这是使用链接列表的b日提醒代码
typedef struct node
{
char name[61];
int month; int day;
int year;
struct node *next;
}node;
这是清单
typedef struct list
{
node *head;
node *tail;
}list;
这是创建列表代码
list *create_list(list *plist)
{
plist->head = NULL;
plist->tail = NULL;
return plist;
}
这会将创建的节点插入列表
list *insert_list(list *plist, node *pnode, node *new_node)
{
new_node->next = pnode->next;
pnode->next = new_node;
if (plist->tail == pnode)
{
plist->tail = new_node;
}
}
这是添加生日菜单
void add_birthday(list *List)
{
char x;
node *data = (node *) malloc(sizeof(node));
List = (list*) malloc(sizeof(list));
printf("******************************************************************\n");
printf(" ADD BIRTHDAY REMINDER FORM\n");
printf("******************************************************************\n");
List = insert_list(List, data, create_node(data));
printf("Would you like to add another(y/n)?\n");
scanf("%c", &x);
if (x=='y')
{
while (x=='y')
{
if (x=='y')
{
getchar();
printf("******************************************************************\n");
node *data = (node *) malloc(sizeof(node));
List = insert_list(List, data, create_node(data));
printf("Would you like to add another(y/n)?\n");
scanf("%c", &x);
}
}
}
main_menu(List); //the problem lies here
}
这是主菜单
void main_menu(list* List)
{
int x;
printf("Welcome to myCalendar version 1.0.0\n");
printf("Please input the number that you wish to do:\n");
printf("[1] Add Birthday Reminder\n");
printf("[2] Delete Birthday Reminder\n");
printf("[3] View Calendar\n");
printf("[4] Quit\n");
scanf("%d", &x);
getchar();
switch (x)
{
case 1:
add_birthday(List);
break;
case 2:
delete_reminder(List);
break;
case 3:
view_calendar(List);
break;
case 4:
free(List);
break;
}
}
这是主要的
int main(void)
{
list* List = (list*) malloc(sizeof(list));
List = create_list(List);
main_menu(List);
return 0;
}
答案 0 :(得分:5)
main_menu()
的定义是否在add_birthday()
之后?如果是,请在main_menu()
之前定义add_birthday()
。还要在main()
之前定义所有方法,或者至少在main()
之前声明它们。
答案 1 :(得分:1)
您没有将包含main_menu()声明的* .h包含在包含main()或add_birthday()的* .c中,或者指向错误的位置。
答案 2 :(得分:1)
你宣布了main_menu吗?在没有声明的情况下,假定函数返回'int'。但是,你的功能定义说,它返回无效。这是所有困惑的原因。