• 2021-04-14
    在单链表指针为()p()的结点之后插入指针为()s()的结点,正确的操作是A.()p->next=s;s->next=p->next()B.()s->next=p->next;p->next=s;()C.()p->next=s;p->next=s->next;