设带有头结点链栈,其栈项指针为top,向链栈中插入一个s结点时,则执行()
举一反三
- 中国大学MOOC: 设带有头结点链栈,其栈项指针为top,向链栈中插入一个s结点时,则执行()
- 向一个栈顶指针为top的链栈(含头结点)中插入x结点,则执行( )
- 设带有头结点链栈,其栈项指针为top,向链栈中插入一个s结点时,则执行() A: s->next=top->next; top->next=s B: s->next=top->next; top=s C: s->next=top; top->next=s D: top->next=s; s->next=top->next
- 设带有头结点链栈,其栈项指针为top,向链栈中插入一个s结点时,则执行() A: s->next=top->next; top->next=s B: s->next=top->next; top=s C: s->next=top; top->next=s D: top->next=s; s->next=top->next
- 向一个栈顶指针为HS的链栈中插入一个s所指结点时,则执行( )。(不带空的头结点)