试题详情

向一个栈顶指针为HS的链栈中将一个S指针所指的结点入栈,执行( )。

AHS->next=s

BS->next=HS->next;HS->next=s

CS->next=HS;HS=s

DS->next=HS;HS=HS->next