• 2022-06-03
    已经L是一个不带表头的单链表,在表首插入结点*p的操作是()
    A: p=L;p->next=L;
    B: P->next=L;p=L;
    C: p->next=L;L=p;
    D: L=p;p->next=L;