问题详情
A.x=top->data;top=top->next;
B.x=top->data;
C.top=top->next;x=top->data;
D.x=top;top=top->next;
请帮忙给出正确答案和分析,谢谢!