✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
Egy duplán láncolt lista esetén az üres lista ellenőrzése az alábbi függvénnyel történik:
bool isEmpty(Node *head)
{return head == NULL;}
ahol a Node típus deklarálása:
typedef struct Node{
int data;
struct Node* next, *prev;}Node;
Melyik sor hiányzik a fenti alprogramból?