判断链表为空的三种情况时间:2025-05-07 08:38:32(1)带头结点单链表:head->next==NULL; (2)带头结点循环链表:head->next==head; (3)不带头结点单链表:head==NULL;