gpt4 book ai didi

C - 双向链表(isEmpty)

转载 作者:行者123 更新时间:2023-11-30 15:07:46 24 4
gpt4 key购买 nike

我有一个双向链表,并且我编写了一个函数来检查列表是否为空。

函数代码:

int isEmpty(list *l)
{
if(l->head== NULL && l->tail== NULL)
return 1;
else
return 0;
}

列表

typedef struct list
{
struct element *head;
struct element *tail;
}list1;

我尝试使用此功能,但当我打开控制台时没有任何内容

case 11:
printf("List is : %d\n", isEmpty(&list1));
break;

最佳答案

list1 是一种类型,因此: printf("List is : %d\n", isEmpty(&list1));毫无意义,

尝试:

list1 l1;
.
.
.
case 11:
printf("List is : %d\n", isEmpty(&l1));
break;

关于C - 双向链表(isEmpty),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37977129/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com