向栈顶为 hs 的链式栈中插入指针为 s 的结点时,应执行: A. hs->next = s;B. s->next = hs; hs = s;C. s->next = hs->next; hs->next = s;D. s->next = hs; hs = hs->next; 正确答案:B