题目内容:
向一个栈顶指针为hs的链栈中插入一个s结点时,不应执行( )
A hs->next=sB s->next=hs->next; hs->next=s
C s->next=hs; hs=s
D s->next=hs; hs=hs->next
参考答案: