以下函数为链栈的进栈操作,x是要进栈的结点的数据域,top为栈顶指针


struct node


{ ElemType data;


struct node *next;


};


struct node *top ;


void Push(ElemType x)


{


struct node *p;


p=(struct node*)malloc __(1)__;


p->data=x;


__(2)__;


__(3)__;


}

答案是:

选项1 sizeof (struct node)
选项2 p->next=top
选项3 top=p
出自  国家开放大学  >  数据结构国家开放大学

更多答案联系客服:19139051760
本题添加时间:2023/5/9 20:10:00