单项选择题

向一个不带头节点的栈顶指针为lst的链栈中插入一个s所指向节点时,则执行()。

A.lst->next =s;
B.s->next=lst->next;lst->next=s;
C.s->next=lst;lst=s;
D.s->next=lst;lst->next=s;