📜  C 函数是一个空的链表 - 任何代码示例

📅  最后修改于: 2022-03-11 14:58:23.742000             🧑  作者: Mango

代码示例1
bool IntLinkedList::isEmpty() const
{   //added const for const-correctness, should be added to declaration as well
    return head == nullptr;
}