向一个不带头节点的栈顶指针为L的链栈中插入一个s所指向节点时,则执行 _______。
A、L->next = s;;
B、s->next=L->next;L->next=s;;
C、s->next=L;L=s;;
D、s->next=L;L->next=s;
发布时间:2025-08-25 05:08:28
A、L->next = s;;
B、s->next=L->next;L->next=s;;
C、s->next=L;L=s;;
D、s->next=L;L->next=s;