向一个栈顶指针为Top的链栈中插入一个s所指结点时,其操作步骤为 ()。
A.OTop->next=s;
B2s->next=Top->next;Top->next=s;
C图s->next=Top;Top=s;
D.@s->next=Top;Top=Top->next
出自:吉林师范大学数据结构