问题详情
向一个栈顶指针为HS的链式栈中插入一个s所指的结点时,则执行
A、HS->next=s;
B、s→next=HS→next;HS→next=s;
C、s->next=HS;HS=s;
D、s→next=HS;HS=HS→next;